diff options
Diffstat (limited to 'libbb/syscalls.c')
-rw-r--r-- | libbb/syscalls.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libbb/syscalls.c b/libbb/syscalls.c index 383eb6ab9..76b77f816 100644 --- a/libbb/syscalls.c +++ b/libbb/syscalls.c | |||
@@ -27,10 +27,9 @@ | |||
27 | /* Kernel headers before 2.1.mumble need this on the Alpha to get | 27 | /* Kernel headers before 2.1.mumble need this on the Alpha to get |
28 | _syscall* defined. */ | 28 | _syscall* defined. */ |
29 | #define __LIBRARY__ | 29 | #define __LIBRARY__ |
30 | |||
31 | |||
32 | #include <sys/syscall.h> | 30 | #include <sys/syscall.h> |
33 | #ifndef __UCLIBC__ | 31 | #if __GNU_LIBRARY__ < 5 |
32 | /* This is needed for libc5 */ | ||
34 | #include <asm/unistd.h> | 33 | #include <asm/unistd.h> |
35 | #endif | 34 | #endif |
36 | #include "libbb.h" | 35 | #include "libbb.h" |