summaryrefslogtreecommitdiff
path: root/libc/stdio/putwchar.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/putwchar.c')
-rw-r--r--libc/stdio/putwchar.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/stdio/putwchar.c b/libc/stdio/putwchar.c
index 3fadb61db..96de6a285 100644
--- a/libc/stdio/putwchar.c
+++ b/libc/stdio/putwchar.c
@@ -9,7 +9,6 @@
#ifdef __DO_UNLOCKED
-
wint_t putwchar_unlocked(wchar_t wc)
{
return fputwc_unlocked(wc, stdout);
@@ -21,11 +20,9 @@ strong_alias(putwchar_unlocked,putwchar)
#elif defined __UCLIBC_HAS_THREADS__
-/* psm: should this be fputwc? */
-
wint_t putwchar(wchar_t wc)
{
- return fputc(wc, stdout);
+ return fputwc(wc, stdout);
}
#endif