summaryrefslogtreecommitdiff
path: root/libio/putwchar_u.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/putwchar_u.c
parentd1407e33350b8bd55c411e76ccf5c5dc70e28293 (diff)
* 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/putwchar_u.c')
-rw-r--r--libio/putwchar_u.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/putwchar_u.c b/libio/putwchar_u.c
index 0da7dcfa30..c8add84146 100644
--- a/libio/putwchar_u.c
+++ b/libio/putwchar_u.c
@@ -21,7 +21,7 @@
wint_t
putwchar_unlocked (c)
- wint_t c;
+ wchar_t c;
{
CHECK_FILE (stdout, WEOF);
return _IO_putwc_unlocked (wc, stdout);