about summary refs log tree commit diff
path: root/libio/fputwc.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-06-20 08:57:58 +0000
committerUlrich Drepper <drepper@redhat.com>1999-06-20 08:57:58 +0000
commitc6bc23f6c81fc0d43688b51eceb4fbb270c4b28d (patch)
treee4dcd4a2a84c5efddda2432e432a2748dae825bd /libio/fputwc.c
parentd1407e33350b8bd55c411e76ccf5c5dc70e28293 (diff)
downloadglibc-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/fputwc.c')
-rw-r--r--libio/fputwc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/fputwc.c b/libio/fputwc.c
index cc8451a98f..9a248eee75 100644
--- a/libio/fputwc.c
+++ b/libio/fputwc.c
@@ -28,7 +28,7 @@
 
 wint_t
 fputwc (wc, fp)
-     wint_t wc;
+     wchar_t wc;
      _IO_FILE *fp;
 {
   int result;