diff options
author | Jim Huang <jserv@0xlab.org> | 2010-10-15 00:50:45 +0800 |
---|---|---|
committer | Jim Huang <jserv@0xlab.org> | 2010-10-15 01:10:31 +0800 |
commit | b4867734b06a18494976934c6f33ff2549595e3f (patch) | |
tree | e0872aed3956ed9a5f8e66457acf71b0c066c96d /libc/stdio/fvwrite.c | |
parent | f67e5211e045af1b12f646448a5a35f96ba5e8f1 (diff) | |
download | android_bionic-b4867734b06a18494976934c6f33ff2549595e3f.tar.gz android_bionic-b4867734b06a18494976934c6f33ff2549595e3f.tar.bz2 android_bionic-b4867734b06a18494976934c6f33ff2549595e3f.zip |
stdio: make internal symbols static/hidden
Although header libc/stdio/local.h declares the macros and private
variables of stdio, there are several internal symbols exposed
unexpectedly.
Change-Id: Ie7a07f85b70322fb9cd05b3c8e1bcc416061eb4b
Diffstat (limited to 'libc/stdio/fvwrite.c')
-rw-r--r-- | libc/stdio/fvwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/fvwrite.c b/libc/stdio/fvwrite.c index ee394006d..57a57e606 100644 --- a/libc/stdio/fvwrite.c +++ b/libc/stdio/fvwrite.c @@ -44,7 +44,7 @@ * This routine is large and unsightly, but most of the ugliness due * to the three different kinds of output buffering is handled here. */ -int +__LIBC_HIDDEN__ int __sfvwrite(FILE *fp, struct __suio *uio) { size_t len; |