diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:11:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:11:44 +0000 |
commit | cb97aadebfeba7f5e8f1b85beee5ab10e88c2990 (patch) | |
tree | f5f56f2ef0f3048325419857d0b538135524ff8c /libc/stdio/vasprintf.c | |
parent | b133fe1cac9f99b63ea56daf92caa1423b1289d0 (diff) |
Last portion of libc_hidden_proto removal.
Appears to build fine (several .configs tried)
Diffstat (limited to 'libc/stdio/vasprintf.c')
-rw-r--r-- | libc/stdio/vasprintf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/stdio/vasprintf.c b/libc/stdio/vasprintf.c index 3c8256870..02f495efb 100644 --- a/libc/stdio/vasprintf.c +++ b/libc/stdio/vasprintf.c @@ -23,14 +23,14 @@ #else #ifdef __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__ -libc_hidden_proto(open_memstream) +/* libc_hidden_proto(open_memstream) */ /* libc_hidden_proto(fclose) */ /* libc_hidden_proto(vfprintf) */ #else -libc_hidden_proto(vsnprintf) +/* libc_hidden_proto(vsnprintf) */ #endif -libc_hidden_proto(vasprintf) +/* libc_hidden_proto(vasprintf) */ int vasprintf(char **__restrict buf, const char * __restrict format, va_list arg) { |