mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
Update.
1999-06-20 Ulrich Drepper <drepper@cygnus.com> * libio/libio.h (_IO_putwc): Correct type of first argument. * wcsmbs/wchar.h: (fputwc, putwc, putwchar, fputwc_unlocked, putwc_unlocked, putwchar_unlocked): Likewise. * libio/fputwc.c: Likewise. * libio/fputwc_unlocked.c: Likewise. * libio/putwc.c: Likewise. * libio/putwc_unlocked.c: Likewise. * libio/putwchar.c: Likewise. * libio/putwchar_unlocked.c: Likewise.
This commit is contained in:
parent
c6bc23f6c8
commit
d195c6ca9b
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
|||||||
|
1999-06-20 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* libio/libio.h (_IO_putwc): Correct type of first argument.
|
||||||
|
* wcsmbs/wchar.h: (fputwc, putwc, putwchar, fputwc_unlocked,
|
||||||
|
putwc_unlocked, putwchar_unlocked): Likewise.
|
||||||
|
* libio/fputwc.c: Likewise.
|
||||||
|
* libio/fputwc_unlocked.c: Likewise.
|
||||||
|
* libio/putwc.c: Likewise.
|
||||||
|
* libio/putwc_unlocked.c: Likewise.
|
||||||
|
* libio/putwchar.c: Likewise.
|
||||||
|
* libio/putwchar_unlocked.c: Likewise.
|
||||||
|
|
||||||
1999-06-19 Roland McGrath <roland@baalperazim.frob.com>
|
1999-06-19 Roland McGrath <roland@baalperazim.frob.com>
|
||||||
|
|
||||||
* sysdeps/gnu/siglist.h: File moved to ...
|
* sysdeps/gnu/siglist.h: File moved to ...
|
||||||
|
@ -597,20 +597,20 @@ extern wint_t fgetwc_unlocked __P ((FILE *__stream));
|
|||||||
|
|
||||||
|
|
||||||
/* Write a character to STREAM. */
|
/* Write a character to STREAM. */
|
||||||
extern wint_t fputwc __P ((wint_t __wc, FILE *__stream));
|
extern wint_t fputwc __P ((wchar_t __wc, FILE *__stream));
|
||||||
extern wint_t putwc __P ((wint_t __wc, FILE *__stream));
|
extern wint_t putwc __P ((wchar_t __wc, FILE *__stream));
|
||||||
|
|
||||||
/* Write a character to stdout. */
|
/* Write a character to stdout. */
|
||||||
extern wint_t putwchar __P ((wint_t __wc));
|
extern wint_t putwchar __P ((wchar_t __wc));
|
||||||
|
|
||||||
#ifdef __USE_GNU
|
#ifdef __USE_GNU
|
||||||
/* Faster version when locking is not necessary. */
|
/* Faster version when locking is not necessary. */
|
||||||
extern wint_t fputwc_unlocked __P ((wint_t __wc, FILE *__stream));
|
extern wint_t fputwc_unlocked __P ((wchar_t __wc, FILE *__stream));
|
||||||
|
|
||||||
/* These are defined to be equivalent to the `char' functions defined
|
/* These are defined to be equivalent to the `char' functions defined
|
||||||
in POSIX.1:1996. */
|
in POSIX.1:1996. */
|
||||||
extern wint_t putwc_unlocked __P ((wint_t __wc, FILE *__stream));
|
extern wint_t putwc_unlocked __P ((wchar_t __wc, FILE *__stream));
|
||||||
extern wint_t putwchar_unlocked __P ((wint_t __wc));
|
extern wint_t putwchar_unlocked __P ((wchar_t __wc));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user