diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-08-15 03:29:56 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-08-15 03:29:56 +0000 |
commit | 3d184586a7a101ccbc5de228b61d78a490315f8a (patch) | |
tree | f4c6dce9a0237ef738c1f90b2cf3a2787a18f943 /libbb | |
parent | 938e982c4d482019f8d30fc9d446d509309505cd (diff) | |
download | busybox-3d184586a7a101ccbc5de228b61d78a490315f8a.tar.gz |
Fix dietlibc test condition
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/libc5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/libc5.c b/libbb/libc5.c index d595fe30a..59c935e3d 100644 --- a/libbb/libc5.c +++ b/libbb/libc5.c @@ -9,7 +9,7 @@ #include <unistd.h> -#ifndef __dietlibc__ && __GNU_LIBRARY__ < 5 +#if ! defined __dietlibc__ && __GNU_LIBRARY__ < 5 /* * Some systems already have updwtmp(). Some don't... This is |