diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-14 22:59:44 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:24 +0200 |
commit | 0eb904a89cbd1b5fc61cd9fedbf737c55fcaa303 (patch) | |
tree | 9e564ab4b3ae543b0435a8bca7e11d21e8502275 /libc/stdio | |
parent | b91a7f431d894b7bafc5f8456f0c4f35e682caf6 (diff) |
fputc.c, stdio.h: no need for hidden putc, putc_unlocked and fputc_unlocked
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/stdio')
-rw-r--r-- | libc/stdio/fputc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c index b49f868f1..7876d77af 100644 --- a/libc/stdio/fputc.c +++ b/libc/stdio/fputc.c @@ -72,16 +72,13 @@ int __fputc_unlocked(int c, register FILE *stream) libc_hidden_def(__fputc_unlocked) strong_alias(__fputc_unlocked,fputc_unlocked) -libc_hidden_def(fputc_unlocked) strong_alias(__fputc_unlocked,putc_unlocked) -libc_hidden_def(putc_unlocked) #ifndef __UCLIBC_HAS_THREADS__ strong_alias(__fputc_unlocked,fputc) libc_hidden_def(fputc) strong_alias(__fputc_unlocked,putc) -libc_hidden_def(putc) #endif #elif defined __UCLIBC_HAS_THREADS__ @@ -101,6 +98,5 @@ int fputc(int c, register FILE *stream) libc_hidden_def(fputc) strong_alias(fputc,putc) -libc_hidden_def(putc) #endif |