summaryrefslogtreecommitdiffstats
path: root/libc
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2014-10-10 20:47:00 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-10-10 20:47:00 +0000
commite0fafb019e33374fae3fa5dc3473e921566b5991 (patch)
treedd8e9ef067d937f3b11ebbffe1059dc4134ca6cc /libc
parent2f25cf373ca7c875956a7c06483b30d381296817 (diff)
parentc891e24073830e07ba7373dee554ff2c70e1d313 (diff)
downloadbionic-e0fafb019e33374fae3fa5dc3473e921566b5991.zip
bionic-e0fafb019e33374fae3fa5dc3473e921566b5991.tar.gz
bionic-e0fafb019e33374fae3fa5dc3473e921566b5991.tar.bz2
am c891e240: Add back symbols to fix Greed for Glory franchise.
* commit 'c891e24073830e07ba7373dee554ff2c70e1d313': Add back symbols to fix Greed for Glory franchise.
Diffstat (limited to 'libc')
-rw-r--r--libc/stdio/local.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/libc/stdio/local.h b/libc/stdio/local.h
index eb84833..13188ee 100644
--- a/libc/stdio/local.h
+++ b/libc/stdio/local.h
@@ -60,17 +60,19 @@ __LIBC64_HIDDEN__ FILE* __sfp(void);
__LIBC64_HIDDEN__ void __sinit(void);
__LIBC64_HIDDEN__ void __smakebuf(FILE*);
+/* These are referenced by the Greed for Glory franchise. */
+__LIBC64_HIDDEN__ int __sflush(FILE *);
+__LIBC64_HIDDEN__ int __sread(void *, char *, int);
+__LIBC64_HIDDEN__ int __swrite(void *, const char *, int);
+__LIBC64_HIDDEN__ fpos_t __sseek(void *, fpos_t, int);
+__LIBC64_HIDDEN__ int __sclose(void *);
+__LIBC64_HIDDEN__ int _fwalk(int (*)(FILE *));
+
#pragma GCC visibility push(hidden)
-int __sflush(FILE *);
int __sflush_locked(FILE *);
-int __sread(void *, char *, int);
-int __swrite(void *, const char *, int);
-fpos_t __sseek(void *, fpos_t, int);
-int __sclose(void *);
void _cleanup(void);
int __swhatbuf(FILE *, size_t *, int *);
-int _fwalk(int (*)(FILE *));
wint_t __fgetwc_unlock(FILE *);
wint_t __ungetwc(wint_t, FILE *);
int __vfprintf(FILE *, const char *, __va_list);