chiark
/
gitweb
/
~mdw
/
termux-packages
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c02037
)
ndk_patches: Revert inline marker
author
Fredrik Fornwall
<fredrik@fornwall.net>
Wed, 25 May 2016 20:24:43 +0000
(16:24 -0400)
committer
Fredrik Fornwall
<fredrik@fornwall.net>
Wed, 25 May 2016 20:24:43 +0000
(16:24 -0400)
Does not work for pre-c99 mode.
ndk_patches/stdio.h.patch
patch
|
blob
|
blame
|
history
diff --git
a/ndk_patches/stdio.h.patch
b/ndk_patches/stdio.h.patch
index 85d20302bd643e185ac8fcfbd91523b6ce389740..8dfed6041ef7fe765929f7ceded49cbd54390632 100644
(file)
--- a/
ndk_patches/stdio.h.patch
+++ b/
ndk_patches/stdio.h.patch
@@
-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;