diff options
author | Roland McGrath <roland@gnu.org> | 1995-08-07 21:45:04 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-08-07 21:45:04 +0000 |
commit | b25c5d66b27045e44e435dbc65b6213840d377f6 (patch) | |
tree | 78b446fbaa5a428221ba12eb32c6ed8b88fa5841 /stdlib | |
parent | 99a9e88e55c4cb46ce645aedac3e5d1a906dfd69 (diff) | |
download | glibc-b25c5d66b27045e44e435dbc65b6213840d377f6.zip glibc-b25c5d66b27045e44e435dbc65b6213840d377f6.tar.gz glibc-b25c5d66b27045e44e435dbc65b6213840d377f6.tar.bz2 |
* stdlib/strtol.c: Use #ifdef, not #if, for HAVE_LIMITS_H.
* posix/glob.c (glob_in_dir): Allocate GLOB_MARK byte in case when
(NFOUND == 0 && (FLAGS & GLOB_NOCHECK)).
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/strtol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/strtol.c b/stdlib/strtol.c index 1d63bbe..8c1a683 100644 --- a/stdlib/strtol.c +++ b/stdlib/strtol.c @@ -33,7 +33,7 @@ Cambridge, MA 02139, USA. */ extern int errno; #endif -#if HAVE_LIMITS_H +#ifdef HAVE_LIMITS_H # include <limits.h> #endif |