Skip to content

Commit 4ec882a

Browse files
committed
Fixes from armv7a android
1 parent f6b9990 commit 4ec882a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

overlays/patches/iserv-proxy-interpreter-9.3-android32.patch

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ new file mode 100644
33
index 0000000..9974c73
44
--- /dev/null
55
+++ b/cbits/symbols.c
6-
@@ -0,0 +1,447 @@
6+
@@ -0,0 +1,456 @@
77
+#include <stddef.h>
88
+#include <stdio.h>
99
+#include <string.h>
@@ -167,6 +167,9 @@ index 0000000..9974c73
167167
+extern void mmap64(void);
168168
+extern void mremap(void);
169169
+extern void readlink(void);
170+
+extern void flock(void);
171+
+extern void times(void);
172+
+extern void getrusage(void);
170173
+
171174
+#define MISSING_FUN(f) void (f)(void) { printf("Unknown call to %s\n", #f); exit(1); }
172175
+
@@ -237,6 +240,7 @@ index 0000000..9974c73
237240
+ SYM(raise),
238241
+ SYM(strcmp),
239242
+ SYM(strerror),
243+
+ SYM(setenv),
240244
+ SYM(unsetenv),
241245
+ SYM(waitpid),
242246
+ SYM(dup2),
@@ -445,6 +449,11 @@ index 0000000..9974c73
445449
+ SYM(mmap64),
446450
+ SYM(mremap),
447451
+ SYM(readlink),
452+
+ SYM(times),
453+
+ SYM(strerror_r),
454+
+ SYM(flock),
455+
+ SYM(puts),
456+
+ SYM(getrusage),
448457
+ { 0, 0, STRENGTH_NORMAL, 1 } /* sentinel */
449458
+};
450459
+

0 commit comments

Comments
 (0)