diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 00:38:38 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 00:38:38 +0000 |
commit | d482ef60da96645599b808bb74fe014e1ab4671e (patch) | |
tree | cf7028139dad0bcca533c61f5a3fbbcec60696ea /libc/stdio/putwchar.c | |
parent | 59bf5cbe99873625ce3d5a9b984e9b98e659eefa (diff) |
Get rid of warnings, use internals, create new hidden versions
Diffstat (limited to 'libc/stdio/putwchar.c')
-rw-r--r-- | libc/stdio/putwchar.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/stdio/putwchar.c b/libc/stdio/putwchar.c index 47bc173e1..471c63f7f 100644 --- a/libc/stdio/putwchar.c +++ b/libc/stdio/putwchar.c @@ -21,9 +21,11 @@ weak_alias(__putwchar_unlocked,putwchar); #elif defined __UCLIBC_HAS_THREADS__ +extern int __fputc (int __c, FILE *__stream) attribute_hidden; + wint_t putwchar(wchar_t wc) { - return fputc(wc, stdout); + return __fputc(wc, stdout); } #endif |