From d9aabfe578e58ef8a884c402d6294edc8dfda883 Mon Sep 17 00:00:00 2001 From: Sean MacLennan Date: Sun, 4 Mar 2018 23:15:59 +0100 Subject: 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 Signed-off-by: Denys Vlasenko --- libbb/missing_syscalls.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libbb/missing_syscalls.c') diff --git a/libbb/missing_syscalls.c b/libbb/missing_syscalls.c index 093412811..87cf59b3d 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 - for struct timex, but may collide with */ -#include #include "libbb.h" #if defined(ANDROID) || defined(__ANDROID__) +/*# include - for struct timex, but may collide with */ +# include pid_t getsid(pid_t pid) { return syscall(__NR_getsid, pid); -- cgit v1.2.3