diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-05 22:38:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-05 22:38:32 +0000 |
commit | 831ed16efca5dd12b51480a3004f3dc86fcf267d (patch) | |
tree | e27a171747294227d1c2cd4eea16ff3e9ae2d99d | |
parent | 79757c9c37beab0032bc065b10bf84d4afe2b500 (diff) | |
download | busybox-w32-831ed16efca5dd12b51480a3004f3dc86fcf267d.tar.gz busybox-w32-831ed16efca5dd12b51480a3004f3dc86fcf267d.tar.bz2 busybox-w32-831ed16efca5dd12b51480a3004f3dc86fcf267d.zip |
Handle glibc 2.0.7 as well
-rw-r--r-- | libbb/syscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/syscalls.c b/libbb/syscalls.c index 4a846eb00..f183b26c3 100644 --- a/libbb/syscalls.c +++ b/libbb/syscalls.c | |||
@@ -71,7 +71,7 @@ int pivot_root(const char * new_root,const char * put_old) | |||
71 | 71 | ||
72 | 72 | ||
73 | 73 | ||
74 | #if __GNU_LIBRARY__ < 5 | 74 | #if __GNU_LIBRARY__ < 5 || ((__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)) |
75 | /* These syscalls are not included as part of libc5 */ | 75 | /* These syscalls are not included as part of libc5 */ |
76 | _syscall2(int, bdflush, int, func, int, data); | 76 | _syscall2(int, bdflush, int, func, int, data); |
77 | 77 | ||