summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-13 06:32:59 +0000
committerJim Meyering <jim@meyering.net>2003-09-13 06:32:59 +0000
commitf019605d4a1ece6e917e3d6ce6255796896ef6d8 (patch)
tree82a2a11acbef0eb626420323cf23221aca7bda77 /m4
parent47bf8f957caff20a3b2eb28198c857bf55006f1b (diff)
downloadcoreutils-f019605d4a1ece6e917e3d6ce6255796896ef6d8.tar.xz
(AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
Diffstat (limited to 'm4')
-rw-r--r--m4/getcwd.m48
1 files changed, 3 insertions, 5 deletions
diff --git a/m4/getcwd.m4 b/m4/getcwd.m4
index 7790dde1a..159aa2baf 100644
--- a/m4/getcwd.m4
+++ b/m4/getcwd.m4
@@ -1,6 +1,6 @@
# getcwd.m4 - check whether getcwd (NULL, 0) allocates memory for result
-# Copyright 2001 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -20,14 +20,12 @@
AC_DEFUN([AC_FUNC_GETCWD_NULL],
[
- AC_CHECK_HEADERS_ONCE(stdlib.h unistd.h)
+ AC_CHECK_HEADERS_ONCE(unistd.h)
AC_CACHE_CHECK([whether getcwd (NULL, 0) allocates memory for result],
[ac_cv_func_getcwd_null],
[AC_TRY_RUN(
[
-# ifdef HAVE_STDLIB_H
-# include <stdlib.h>
-# endif
+# include <stdlib.h>
# ifdef HAVE_UNISTD_H
# include <unistd.h>
# endif