Skip to content

Commit

Permalink
Accomodate older glibc's which also do not have the module
Browse files Browse the repository at this point in the history
syscalls.
  • Loading branch information
ErikBAndersen committed Oct 24, 2001
1 parent eb2a21f commit aad0c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion busybox/libbb/module_syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include "libbb.h"


#if __GNU_LIBRARY__ < 5
#if __GNU_LIBRARY__ < 5 || ((__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1))
/* These syscalls are not included as part of libc5 */
_syscall1(int, delete_module, const char *, name);
_syscall1(int, get_kernel_syms, __ptr_t, ks);
Expand Down

0 comments on commit aad0c53

Please sign in to comment.