diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-09-18 20:57:40 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-09-18 20:57:40 +0200 |
commit | 21730caa6647f645974e132ca8afec79b4eeab2b (patch) | |
tree | 6c0a0e491526f19ab08062d7f22448ac60ca4bf5 /libc/stdio/fputc.c | |
parent | 35c8387f6d3dd3d901bdc9bb7eb1c681cd1b2c0d (diff) |
trim Experimentally off and uncommented hidden
sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *)
sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *)
should be a nop
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/stdio/fputc.c')
-rw-r--r-- | libc/stdio/fputc.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c index f426161d2..b49f868f1 100644 --- a/libc/stdio/fputc.c +++ b/libc/stdio/fputc.c @@ -12,7 +12,6 @@ #undef putc #undef putc_unlocked -/* libc_hidden_proto(__fputc_unlocked) */ #ifdef __DO_UNLOCKED @@ -72,26 +71,21 @@ int __fputc_unlocked(int c, register FILE *stream) } libc_hidden_def(__fputc_unlocked) -/* libc_hidden_proto(fputc_unlocked) */ strong_alias(__fputc_unlocked,fputc_unlocked) libc_hidden_def(fputc_unlocked) -/* libc_hidden_proto(putc_unlocked) */ strong_alias(__fputc_unlocked,putc_unlocked) libc_hidden_def(putc_unlocked) #ifndef __UCLIBC_HAS_THREADS__ -/* libc_hidden_proto(fputc) */ strong_alias(__fputc_unlocked,fputc) libc_hidden_def(fputc) -/* libc_hidden_proto(putc) */ strong_alias(__fputc_unlocked,putc) libc_hidden_def(putc) #endif #elif defined __UCLIBC_HAS_THREADS__ -/* libc_hidden_proto(fputc) */ int fputc(int c, register FILE *stream) { if (stream->__user_locking != 0) { @@ -106,7 +100,6 @@ int fputc(int c, register FILE *stream) } libc_hidden_def(fputc) -/* libc_hidden_proto(putc) */ strong_alias(fputc,putc) libc_hidden_def(putc) |