diff options
author | Sean MacLennan | 2018-03-04 23:15:59 +0100 |
---|---|---|
committer | Denys Vlasenko | 2018-03-04 23:15:59 +0100 |
commit | d9aabfe578e58ef8a884c402d6294edc8dfda883 (patch) | |
tree | 581a7127f7600ef7434bb8b422af669cf0e6ee3e /libbb/missing_syscalls.c | |
parent | d4802c6243e64e28690577bc0bb4f030581c496b (diff) | |
download | busybox-d9aabfe578e58ef8a884c402d6294edc8dfda883.zip busybox-d9aabfe578e58ef8a884c402d6294edc8dfda883.tar.gz |
make busybox more portable
Move some distro specific include files into the appropriate #ifdef
blocks to make the code more portable.
Signed-off-by: Sean MacLennan <seanm@seanm.ca>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/missing_syscalls.c')
-rw-r--r-- | libbb/missing_syscalls.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libbb/missing_syscalls.c b/libbb/missing_syscalls.c index 0934128..87cf59b 100644 --- a/libbb/missing_syscalls.c +++ b/libbb/missing_syscalls.c @@ -3,14 +3,13 @@ * * Licensed under GPLv2, see file LICENSE in this source tree. */ - //kbuild:lib-y += missing_syscalls.o -/*#include <linux/timex.h> - for struct timex, but may collide with <time.h> */ -#include <sys/syscall.h> #include "libbb.h" #if defined(ANDROID) || defined(__ANDROID__) +/*# include <linux/timex.h> - for struct timex, but may collide with <time.h> */ +# include <sys/syscall.h> pid_t getsid(pid_t pid) { return syscall(__NR_getsid, pid); |