[git commit] fputc.c, stdio.h: no need for hidden putc, putc_unlocked and fputc_unlocked

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Fri Jun 15 12:00:24 UTC 2012


commit: http://git.uclibc.org/uClibc/commit/?id=0eb904a89cbd1b5fc61cd9fedbf737c55fcaa303
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 include/stdio.h    |    3 ---
 libc/stdio/fputc.c |    4 ----
 2 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/include/stdio.h b/include/stdio.h
index 289b861..6608d1d 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -519,7 +519,6 @@ __BEGIN_NAMESPACE_STD
 extern int fputc (int __c, FILE *__stream);
 libc_hidden_proto(fputc)
 extern int putc (int __c, FILE *__stream);
-libc_hidden_proto(putc)
 
 /* Write a character to stdout.
 
@@ -540,7 +539,6 @@ __END_NAMESPACE_STD
    or due to the implementation it is a cancellation point and
    therefore not marked with __THROW.  */
 extern int fputc_unlocked (int __c, FILE *__stream);
-libc_hidden_proto(fputc_unlocked)
 #endif /* Use MISC.  */
 
 #if defined __USE_POSIX || defined __USE_MISC
@@ -549,7 +547,6 @@ libc_hidden_proto(fputc_unlocked)
    These functions are possible cancellation points and therefore not
    marked with __THROW.  */
 extern int putc_unlocked (int __c, FILE *__stream);
-libc_hidden_proto(putc_unlocked)
 extern int putchar_unlocked (int __c);
 
 /* SUSv3 allows putc_unlocked to be a macro */
diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c
index b49f868..7876d77 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


More information about the uClibc-cvs mailing list