diff options
author | Elliott Hughes <enh@google.com> | 2014-07-14 14:41:47 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-07-14 15:13:30 -0700 |
commit | a167eef5482d4a89d4277ec74f57adbe38052813 (patch) | |
tree | 53cfbccf1f41116a46996951eb08b6f00fb1fd09 /libc/stdio | |
parent | 673bff01aed0c08991b98841ed0bfad78a589672 (diff) | |
download | bionic-a167eef5482d4a89d4277ec74f57adbe38052813.zip bionic-a167eef5482d4a89d4277ec74f57adbe38052813.tar.gz bionic-a167eef5482d4a89d4277ec74f57adbe38052813.tar.bz2 |
Fix visibility for a bunch more symbols.
Bug: 11156955
Bug: 15291317
Change-Id: I664f25cce7c17085a101d6593d8e01525a1f6a90
Diffstat (limited to 'libc/stdio')
-rw-r--r-- | libc/stdio/local.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libc/stdio/local.h b/libc/stdio/local.h index 151e009..4511a71 100644 --- a/libc/stdio/local.h +++ b/libc/stdio/local.h @@ -49,14 +49,7 @@ */ __LIBC_HIDDEN__ int __srget(FILE*); __LIBC_HIDDEN__ int __swbuf(int, FILE*); - -/* - * The NDK apparently includes an android_support.a library that - * refers to __srefill in its copy of the vsnprintf implementation. - */ -/* TODO(LP64): __LIBC_HIDDEN__ int __srefill(FILE*);*/ -/* http://b/15291317: the LP64 NDK needs to be fixed to remove that cruft. */ -__LIBC_ABI_PUBLIC__ int __srefill(FILE*); +__LIBC_HIDDEN__ int __srefill(FILE*); #else __LIBC_ABI_PUBLIC__ int __srget(FILE*); __LIBC_ABI_PUBLIC__ int __swbuf(int, FILE*); |