1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-29 23:09:16 +00:00
termux-packages/packages/busybox/missing_syscalls.c.patch
Fredrik Fornwall 59f0d218a6 Initial push
2015-06-13 01:03:31 +02:00

18 lines
492 B
Diff

We have patched the ndk header to include getsid().
diff -u -r ../busybox-1.22.1/libbb/missing_syscalls.c ./libbb/missing_syscalls.c
--- ../busybox-1.22.1/libbb/missing_syscalls.c 2014-01-09 19:15:44.000000000 +0100
+++ ./libbb/missing_syscalls.c 2014-07-08 15:57:13.545408937 +0200
@@ -11,11 +11,6 @@
#include "libbb.h"
#if defined(ANDROID) || defined(__ANDROID__)
-pid_t getsid(pid_t pid)
-{
- return syscall(__NR_getsid, pid);
-}
-
int stime(const time_t *t)
{
struct timeval tv;