diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-20 08:57:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-20 08:57:58 +0000 |
commit | c6bc23f6c81fc0d43688b51eceb4fbb270c4b28d (patch) | |
tree | e4dcd4a2a84c5efddda2432e432a2748dae825bd /libio/libio.h | |
parent | d1407e33350b8bd55c411e76ccf5c5dc70e28293 (diff) | |
download | glibc-c6bc23f6c81fc0d43688b51eceb4fbb270c4b28d.tar.gz glibc-c6bc23f6c81fc0d43688b51eceb4fbb270c4b28d.tar.xz glibc-c6bc23f6c81fc0d43688b51eceb4fbb270c4b28d.zip |
* 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.
Diffstat (limited to 'libio/libio.h')
-rw-r--r-- | libio/libio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/libio.h b/libio/libio.h index ddf24b2456..ba820409f1 100644 --- a/libio/libio.h +++ b/libio/libio.h @@ -418,7 +418,7 @@ extern _IO_wint_t __woverflow __P ((_IO_FILE *, _IO_wint_t)); extern int _IO_getc __P ((_IO_FILE *__fp)); extern int _IO_putc __P ((int __c, _IO_FILE *__fp)); extern _IO_wint_t _IO_getwc __P ((_IO_FILE *__fp)); -extern _IO_wint_t _IO_putwc __P ((_IO_wint_t __wc, _IO_FILE *__fp)); +extern _IO_wint_t _IO_putwc __P ((_IO_wchar_t __wc, _IO_FILE *__fp)); extern int _IO_feof __P ((_IO_FILE *__fp)); extern int _IO_ferror __P ((_IO_FILE *__fp)); |