aboutsummaryrefslogtreecommitdiff
path: root/libbb/missing_syscalls.c
diff options
context:
space:
mode:
authorSean MacLennan <seanm@seanm.ca>2018-03-04 23:15:59 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-03-04 23:15:59 +0100
commitd9aabfe578e58ef8a884c402d6294edc8dfda883 (patch)
tree581a7127f7600ef7434bb8b422af669cf0e6ee3e /libbb/missing_syscalls.c
parentd4802c6243e64e28690577bc0bb4f030581c496b (diff)
downloadbusybox-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.c5
1 files changed, 2 insertions, 3 deletions
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 <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);