diff options
author | Pavel Roskin <proski@gnu.org> | 2000-07-28 19:38:27 +0000 |
---|---|---|
committer | Pavel Roskin <proski@gnu.org> | 2000-07-28 19:38:27 +0000 |
commit | 616d13bcd1a431eb21d1d3e48b17be6c26443c1d (patch) | |
tree | bc2a919eebf8f99bcce3c2d07d6e5a74393d4ce8 /coreutils | |
parent | 259972e5657847313077dfd2ab8e84f065a82811 (diff) | |
download | busybox-616d13bcd1a431eb21d1d3e48b17be6c26443c1d.tar.gz |
Fixed to pass -Wundef
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/md5sum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/md5sum.c b/coreutils/md5sum.c index fad563fe7..a791a41b0 100644 --- a/coreutils/md5sum.c +++ b/coreutils/md5sum.c @@ -96,7 +96,7 @@ extern _IO_ssize_t getline __P ((char **, size_t *, FILE *)); #include <stdio.h> -#if defined HAVE_LIMITS_H || _LIBC +#if defined HAVE_LIMITS_H || defined _LIBC # include <limits.h> #endif |