aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-24 00:44:11 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-24 00:44:11 +0000
commit47f91d1f7fc06cf27e2a6c3c2ada99226ba50cb9 (patch)
tree40a5c8ef1b96b86a036030751cedb5c3cbe4b2c9
parent03fb0c28d9f0e24f1bcbfd152ea33bb4e165629f (diff)
downloadbusybox-w32-47f91d1f7fc06cf27e2a6c3c2ada99226ba50cb9.tar.gz
busybox-w32-47f91d1f7fc06cf27e2a6c3c2ada99226ba50cb9.tar.bz2
busybox-w32-47f91d1f7fc06cf27e2a6c3c2ada99226ba50cb9.zip
Accomodate older glibc, which also lacks the module syscalls
git-svn-id: svn://busybox.net/trunk/busybox@3560 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--libbb/module_syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/module_syscalls.c b/libbb/module_syscalls.c
index 36b75fb93..8326f15ad 100644
--- a/libbb/module_syscalls.c
+++ b/libbb/module_syscalls.c
@@ -34,7 +34,7 @@
34#include "libbb.h" 34#include "libbb.h"
35 35
36 36
37#if __GNU_LIBRARY__ < 5 37#if __GNU_LIBRARY__ < 5 || ((__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1))
38/* These syscalls are not included as part of libc5 */ 38/* These syscalls are not included as part of libc5 */
39_syscall1(int, delete_module, const char *, name); 39_syscall1(int, delete_module, const char *, name);
40_syscall1(int, get_kernel_syms, __ptr_t, ks); 40_syscall1(int, get_kernel_syms, __ptr_t, ks);