From: Eric Andersen Date: Thu, 5 Apr 2001 22:38:32 +0000 (-0000) Subject: Handle glibc 2.0.7 as well X-Git-Tag: 0_51~31 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=831ed16efca5dd12b51480a3004f3dc86fcf267d;p=oweals%2Fbusybox.git Handle glibc 2.0.7 as well --- 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) -#if __GNU_LIBRARY__ < 5 +#if __GNU_LIBRARY__ < 5 || ((__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)) /* These syscalls are not included as part of libc5 */ _syscall2(int, bdflush, int, func, int, data);