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 /include | |
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 'include')
-rw-r--r-- | include/stdio.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/stdio.h b/include/stdio.h index 289b861a5..6608d1de8 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 */ |