summaryrefslogtreecommitdiff
path: root/libc/stdio
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-18 01:09:55 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-18 01:09:55 +0000
commite8c6de1939e1f8a2898a0e53134fa175560b9469 (patch)
tree0d573525f6e657aa60bf04b4a7c3ddb9225f6347 /libc/stdio
parent508383b431a6ef45c0992fdd47064edb581c6214 (diff)
libc_hidden_proto removal, just a few functions
Diffstat (limited to 'libc/stdio')
-rw-r--r--libc/stdio/_READ.c2
-rw-r--r--libc/stdio/_cs_funcs.c2
-rw-r--r--libc/stdio/_vfprintf.c2
-rw-r--r--libc/stdio/fclose.c2
-rw-r--r--libc/stdio/popen.c2
-rw-r--r--libc/stdio/tmpfile.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/libc/stdio/_READ.c b/libc/stdio/_READ.c
index bafa8dffe..09fca91c7 100644
--- a/libc/stdio/_READ.c
+++ b/libc/stdio/_READ.c
@@ -8,7 +8,7 @@
#include "_stdio.h"
libc_hidden_proto(read)
-libc_hidden_proto(abort)
+/* libc_hidden_proto(abort) */
/* Given a reading stream without its end-of-file indicator set and
* with no buffered input or ungots, read at most 'bufsize' bytes
diff --git a/libc/stdio/_cs_funcs.c b/libc/stdio/_cs_funcs.c
index 38a8351e5..8f83aa229 100644
--- a/libc/stdio/_cs_funcs.c
+++ b/libc/stdio/_cs_funcs.c
@@ -9,7 +9,7 @@
libc_hidden_proto(read)
libc_hidden_proto(write)
-libc_hidden_proto(close)
+/* libc_hidden_proto(close) */
#ifdef __UCLIBC_HAS_LFS__
libc_hidden_proto(lseek64)
#else
diff --git a/libc/stdio/_vfprintf.c b/libc/stdio/_vfprintf.c
index 61a730d75..604e73c3b 100644
--- a/libc/stdio/_vfprintf.c
+++ b/libc/stdio/_vfprintf.c
@@ -121,7 +121,7 @@
/* Experimentally off - libc_hidden_proto(strnlen) */
libc_hidden_proto(__glibc_strerror_r)
libc_hidden_proto(fputs_unlocked)
-libc_hidden_proto(abort)
+/* libc_hidden_proto(abort) */
#ifdef __UCLIBC_HAS_WCHAR__
libc_hidden_proto(wcslen)
libc_hidden_proto(wcsnlen)
diff --git a/libc/stdio/fclose.c b/libc/stdio/fclose.c
index 27d3c7e96..45a614351 100644
--- a/libc/stdio/fclose.c
+++ b/libc/stdio/fclose.c
@@ -8,7 +8,7 @@
#include "_stdio.h"
libc_hidden_proto(fclose)
-libc_hidden_proto(close)
+/* libc_hidden_proto(close) */
libc_hidden_proto(fflush_unlocked)
int fclose(register FILE *stream)
diff --git a/libc/stdio/popen.c b/libc/stdio/popen.c
index 43d07fa0f..4fd25072a 100644
--- a/libc/stdio/popen.c
+++ b/libc/stdio/popen.c
@@ -26,7 +26,7 @@
#warning "hmm... susv3 says Pipe streams are byte-oriented."
#endif /* __UCLIBC_MJN3_ONLY__ */
-libc_hidden_proto(close)
+/* libc_hidden_proto(close) */
libc_hidden_proto(_exit)
libc_hidden_proto(waitpid)
libc_hidden_proto(execl)
diff --git a/libc/stdio/tmpfile.c b/libc/stdio/tmpfile.c
index f83944539..05143d3ea 100644
--- a/libc/stdio/tmpfile.c
+++ b/libc/stdio/tmpfile.c
@@ -23,7 +23,7 @@
libc_hidden_proto(fdopen)
libc_hidden_proto(remove)
-libc_hidden_proto(close)
+/* libc_hidden_proto(close) */
/* This returns a new stream opened on a temporary file (generated
by tmpnam). The file is opened with mode "w+b" (binary read/write).