summaryrefslogtreecommitdiff
path: root/libc/stdio
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-29 20:45:56 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-29 20:45:56 +0000
commit32167ca3b6a36c0922bea30b2c44e78ccd5290ae (patch)
treebdbb68c7fb2e1527ed261990b2b2671ab8f6fa75 /libc/stdio
parent7357e8836f7c742602f59cc8f2b97382634c59b8 (diff)
fix improperly hidden fwprintf.
make two data objects static. text data bss dec hex filename - 274779 1835 19012 295626 482ca lib/libuClibc-0.9.30-svn.so + 274693 1835 19012 295540 48274 lib/libuClibc-0.9.30-svn.so
Diffstat (limited to 'libc/stdio')
-rw-r--r--libc/stdio/fwprintf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/stdio/fwprintf.c b/libc/stdio/fwprintf.c
index a5f09cd2d..6bae0c7a4 100644
--- a/libc/stdio/fwprintf.c
+++ b/libc/stdio/fwprintf.c
@@ -22,3 +22,4 @@ int fwprintf(FILE * __restrict stream, const wchar_t * __restrict format, ...)
return rv;
}
+libc_hidden_def(fwprintf)