summaryrefslogtreecommitdiff
path: root/libc/stdio
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio')
-rw-r--r--libc/stdio/_stdio.h2
-rw-r--r--libc/stdio/fflush.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/_stdio.h b/libc/stdio/_stdio.h
index 27075a8ac..aaa3ad656 100644
--- a/libc/stdio/_stdio.h
+++ b/libc/stdio/_stdio.h
@@ -46,7 +46,7 @@ do { \
__STDIO_THREADUNLOCK_OPENLIST_DEL; \
} while (0)
-extern void _stdio_openlist_dec_use(void);
+extern void _stdio_openlist_dec_use(void) attribute_hidden;
#define __STDIO_OPENLIST_DEC_USE \
_stdio_openlist_dec_use()
diff --git a/libc/stdio/fflush.c b/libc/stdio/fflush.c
index cee712a92..01564a936 100644
--- a/libc/stdio/fflush.c
+++ b/libc/stdio/fflush.c
@@ -27,7 +27,7 @@
(_stdio_user_locking != 2))
#if defined(__UCLIBC_HAS_THREADS__) && defined(__STDIO_BUFFERS)
-void _stdio_openlist_dec_use(void)
+void attribute_hidden _stdio_openlist_dec_use(void)
{
__STDIO_THREADLOCK_OPENLIST_DEL;
if ((_stdio_openlist_use_count == 1) && (_stdio_openlist_del_count > 0)) {