aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-08-15 03:29:56 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-08-15 03:29:56 +0000
commit3d184586a7a101ccbc5de228b61d78a490315f8a (patch)
treef4c6dce9a0237ef738c1f90b2cf3a2787a18f943
parent938e982c4d482019f8d30fc9d446d509309505cd (diff)
downloadbusybox-w32-3d184586a7a101ccbc5de228b61d78a490315f8a.tar.gz
busybox-w32-3d184586a7a101ccbc5de228b61d78a490315f8a.tar.bz2
busybox-w32-3d184586a7a101ccbc5de228b61d78a490315f8a.zip
Fix dietlibc test condition
-rw-r--r--libbb/libc5.c2
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 @@
9#include <unistd.h> 9#include <unistd.h>
10 10
11 11
12#ifndef __dietlibc__ && __GNU_LIBRARY__ < 5 12#if ! defined __dietlibc__ && __GNU_LIBRARY__ < 5
13 13
14/* 14/*
15 * Some systems already have updwtmp(). Some don't... This is 15 * Some systems already have updwtmp(). Some don't... This is