2015-06-13 01:03:31 +02:00
|
|
|
diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/include/stdio.h ./usr/include/stdio.h
|
|
|
|
--- /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/include/stdio.h 2014-10-14 22:53:49.000000000 -0400
|
2015-12-24 09:20:05 +01:00
|
|
|
+++ ./usr/include/stdio.h 2015-12-24 03:07:45.028840214 -0500
|
|
|
|
@@ -52,6 +52,8 @@
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
+#include <string.h> /* For strcpy(3) used by ctermid() */
|
|
|
|
+
|
|
|
|
#define __need_NULL
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
@@ -193,7 +195,7 @@
|
|
|
|
|
2015-06-13 01:03:31 +02:00
|
|
|
/* System V/ANSI C; this is the wrong way to do this, do *not* use these. */
|
|
|
|
#if __BSD_VISIBLE || __XPG_VISIBLE
|
|
|
|
-#define P_tmpdir "/tmp/"
|
2015-12-24 09:21:22 +01:00
|
|
|
+#define P_tmpdir "@TERMUX_PREFIX@/tmp/"
|
2015-06-13 01:03:31 +02:00
|
|
|
#endif
|
|
|
|
#define L_tmpnam 1024 /* XXX must be == PATH_MAX */
|
|
|
|
#define TMP_MAX 308915776
|
2015-12-24 09:20:05 +01:00
|
|
|
@@ -371,6 +373,16 @@
|
2015-06-13 01:03:31 +02:00
|
|
|
#define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
|
|
|
|
#endif /* __BSD_VISIBLE */
|
2015-12-24 09:20:05 +01:00
|
|
|
|
2015-06-13 01:03:31 +02:00
|
|
|
+/* Needed by gnulibs freading() */
|
|
|
|
+#define __sferror(p) (((p)->_flags & __SERR) != 0)
|
2015-12-24 08:04:00 +01:00
|
|
|
+
|
|
|
|
+/* Used by perl, fish, and others */
|
|
|
|
+static char* ctermid(char* s) {
|
|
|
|
+ if (s == 0) return "/dev/tty";
|
|
|
|
+ strcpy(s, "/dev/tty");
|
|
|
|
+ return s;
|
|
|
|
+}
|
2015-06-13 01:03:31 +02:00
|
|
|
+
|
|
|
|
#if defined(__BIONIC_FORTIFY)
|
2015-12-24 09:20:05 +01:00
|
|
|
|
2015-06-13 01:03:31 +02:00
|
|
|
__BEGIN_DECLS
|