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/md5sum.c | |
parent | 259972e5657847313077dfd2ab8e84f065a82811 (diff) | |
download | busybox-w32-616d13bcd1a431eb21d1d3e48b17be6c26443c1d.tar.gz busybox-w32-616d13bcd1a431eb21d1d3e48b17be6c26443c1d.tar.bz2 busybox-w32-616d13bcd1a431eb21d1d3e48b17be6c26443c1d.zip |
Fixed to pass -Wundef
Diffstat (limited to 'coreutils/md5sum.c')
-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 *)); | |||
96 | 96 | ||
97 | #include <stdio.h> | 97 | #include <stdio.h> |
98 | 98 | ||
99 | #if defined HAVE_LIMITS_H || _LIBC | 99 | #if defined HAVE_LIMITS_H || defined _LIBC |
100 | # include <limits.h> | 100 | # include <limits.h> |
101 | #endif | 101 | #endif |
102 | 102 | ||