From 28c8634afdc1fa236679b49ab0d5a019379c6db1 Mon Sep 17 00:00:00 2001 From: Carmelo Amoroso Date: Thu, 27 Nov 2008 18:21:33 +0000 Subject: Synch with trunk @ 24165 Step 17: libc_hidden_proto removal (almost all). and other minor changes (inline keyword, extra character) --- libc/stdio/fflush.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libc/stdio/fflush.c') diff --git a/libc/stdio/fflush.c b/libc/stdio/fflush.c index 11b837dde..0a950d511 100644 --- a/libc/stdio/fflush.c +++ b/libc/stdio/fflush.c @@ -7,7 +7,7 @@ #include "_stdio.h" -libc_hidden_proto(fflush_unlocked) +/* libc_hidden_proto(fflush_unlocked) */ #ifdef __DO_UNLOCKED @@ -27,7 +27,7 @@ libc_hidden_proto(fflush_unlocked) (_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)) { @@ -179,14 +179,14 @@ int fflush_unlocked(register FILE *stream) libc_hidden_def(fflush_unlocked) #ifndef __UCLIBC_HAS_THREADS__ -libc_hidden_proto(fflush) +/* libc_hidden_proto(fflush) */ strong_alias(fflush_unlocked,fflush) libc_hidden_def(fflush) #endif #elif defined __UCLIBC_HAS_THREADS__ -libc_hidden_proto(fflush) +/* libc_hidden_proto(fflush) */ int fflush(register FILE *stream) { int retval; -- cgit v1.2.3