]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
authorJim Meyering <jim@meyering.net>
Sat, 13 Sep 2003 06:32:59 +0000 (06:32 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 13 Sep 2003 06:32:59 +0000 (06:32 +0000)
m4/getcwd.m4

index 7790dde1acc2824f0d241d59eda88fb3b66bcd25..159aa2bafe2b32b31ea134ace394e4ccd6374e1d 100644 (file)
@@ -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
 
 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