1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

* 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)).
This commit is contained in:
Roland McGrath
1995-08-07 21:45:04 +00:00
parent 99a9e88e55
commit b25c5d66b2
4 changed files with 17 additions and 8 deletions

View File

@ -33,7 +33,7 @@ Cambridge, MA 02139, USA. */
extern int errno;
#endif
#if HAVE_LIMITS_H
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif