From d482ef60da96645599b808bb74fe014e1ab4671e Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Fri, 16 Dec 2005 00:38:38 +0000 Subject: Get rid of warnings, use internals, create new hidden versions --- libc/stdio/putwchar.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libc/stdio/putwchar.c') 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 -- cgit v1.2.3