1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-12 03:51:30 +02:00

Guard inclusion of stdlib.h with #if HAVE_STDLIB_H', not #if STDC_HEADERS'.

Declare malloc if needed.
This commit is contained in:
Jim Meyering
2000-02-27 18:04:00 +00:00
parent 4fef810c37
commit 5bea77e1af
+8 -3
View File
@@ -58,10 +58,8 @@
# define CLOSEDIR(d) closedir (d)
#endif
#if STDC_HEADERS
#if HAVE_STDLIB_H
# include <stdlib.h>
#else
char *malloc ();
#endif
#ifndef HAVE_DECL_GETENV
@@ -71,6 +69,13 @@ char *malloc ();
char *getenv ();
#endif
#ifndef HAVE_DECL_MALLOC
"this configure-time declaration test was not run"
#endif
#if !HAVE_DECL_MALLOC
char *malloc ();
#endif
char *base_name PARAMS ((char const *));
#if HAVE_DIRENT_H || HAVE_NDIR_H || HAVE_SYS_DIR_H || HAVE_SYS_NDIR_H