]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
libitize
authorJim Meyering <jim@meyering.net>
Mon, 4 Nov 1996 18:11:58 +0000 (18:11 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 4 Nov 1996 18:11:58 +0000 (18:11 +0000)
lib/xgetcwd.c

index 3615161a01733a4fa515f04e49f46a8d48e9751e..7ab2204682587acdc16722c412912c88c7dbcef0 100644 (file)
@@ -17,7 +17,7 @@
 
 /* Written by David MacKenzie <djm@gnu.ai.mit.edu>.  */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include <config.h>
 #endif
 
 #ifndef errno
 extern int errno;
 #endif
+
 #include <sys/types.h>
 #include "pathmax.h"
 
-#ifndef HAVE_GETCWD
-char *getwd ();
-# define getcwd(buf, max) getwd (buf)
-#else
+#if HAVE_GETCWD
 char *getcwd ();
+#else
+char *getwd ();
+# define getcwd(Buf, Max) getwd (Buf)
 #endif
 
 /* Amount to increase buffer size by in each try. */