ndk_patches: Mark added functions as inline
authorFredrik Fornwall <fredrik@fornwall.net>
Wed, 25 May 2016 20:18:19 +0000 (16:18 -0400)
committerFredrik Fornwall <fredrik@fornwall.net>
Wed, 25 May 2016 20:18:19 +0000 (16:18 -0400)
This avoids warnings about unused functions.

ndk_patches/stdio.h.patch

index 8dfed60..85d2030 100644 (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 char* ctermid(char* s) {
++static inline 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 FILE* tmpfile() {
++static inline FILE* tmpfile() {
 +      int p = getpid();
 +      char* path;
 +      int i;