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/putwc.c | |
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/putwc.c')
-rw-r--r-- | libio/putwc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/putwc.c b/libio/putwc.c index 07557ac8c4..ec3d6e47a9 100644 --- a/libio/putwc.c +++ b/libio/putwc.c @@ -21,7 +21,7 @@ wint_t putwc (wc, fp) - wint_t wc; + wchar_t wc; _IO_FILE *fp; { wint_t result; |