ndk_patches: Revert inline marker

Does not work for pre-c99 mode.
This commit is contained in:
Fredrik Fornwall 2016-05-25 16:24:43 -04:00
parent 2c0203760f
commit f153ee9321
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl
+#define __sferror(p) (((p)->_flags & __SERR) != 0)
+
+/* Used by perl, fish, and others */
+static inline char* ctermid(char* s) {
+static char* ctermid(char* s) {
+ if (s == 0) return (char*) "/dev/tty";
+ strcpy(s, "/dev/tty");
+ return s;
@ -55,7 +55,7 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl
+extern int open(const char*, int, ...);
+extern pid_t getpid();
+extern int unlink(const char*);
+static inline FILE* tmpfile() {
+static FILE* tmpfile() {
+ int p = getpid();
+ char* path;
+ int i;