summaryrefslogtreecommitdiff
path: root/libc/stdio/fputwc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/fputwc.c')
-rw-r--r--libc/stdio/fputwc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/fputwc.c b/libc/stdio/fputwc.c
index ef7a6d627..dbea948dc 100644
--- a/libc/stdio/fputwc.c
+++ b/libc/stdio/fputwc.c
@@ -9,7 +9,7 @@
#ifdef __DO_UNLOCKED
-wint_t __fputwc_unlocked(wchar_t wc, FILE *stream)
+wint_t attribute_hidden __fputwc_unlocked(wchar_t wc, FILE *stream)
{
return _wstdio_fwrite(&wc, 1, stream) ? wc : WEOF;
}