diff options
author | Elliott Hughes <enh@google.com> | 2014-09-24 17:20:53 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-09-24 20:07:10 -0700 |
commit | abefc93ff33afdb0e92e1fe9bd47a82b5e303e14 (patch) | |
tree | db389de548059c1185c4dbf83d7a550ce1450051 /libc/stdio/glue.h | |
parent | a864e72b566234fdc41344725aa9b4f47c5baba3 (diff) | |
download | android_bionic-abefc93ff33afdb0e92e1fe9bd47a82b5e303e14.tar.gz android_bionic-abefc93ff33afdb0e92e1fe9bd47a82b5e303e14.tar.bz2 android_bionic-abefc93ff33afdb0e92e1fe9bd47a82b5e303e14.zip |
Re-expose more stdio implementation details for LP32.
Keeps a variety of apps running.
(cherry-pick of 5def2f5aecd968e4022b0afbe4441fa7ba3e7c7e.)
Bug: 17047819
Change-Id: I55882ec95f2b59a5df76e5a89c23aa315609e01d
Diffstat (limited to 'libc/stdio/glue.h')
-rw-r--r-- | libc/stdio/glue.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libc/stdio/glue.h b/libc/stdio/glue.h index 81f83fc01..4ead20a81 100644 --- a/libc/stdio/glue.h +++ b/libc/stdio/glue.h @@ -42,8 +42,5 @@ struct glue { FILE *iobs; }; -#pragma GCC visibility push(hidden) - -extern struct glue __sglue; - -#pragma GCC visibility pop +/* This was referenced by a couple of different pieces of middleware and the Crystax NDK. */ +__LIBC64_HIDDEN__ extern struct glue __sglue; |