changeset 778:8043b4ae1d6a

libitize
author Jim Meyering <jim@meyering.net>
date Mon, 04 Nov 1996 18:07:38 +0000
parents 7eb25ee7cc7b
children d183d24934d4
files lib/stpcpy.c lib/xgetcwd.c
diffstat 2 files changed, 8 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/lib/stpcpy.c
+++ b/lib/stpcpy.c
@@ -15,8 +15,8 @@
     along with this program; if not, write to the Free Software Foundation,
     Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
 
-#ifdef HAVE_CONFIG_H
-#include <config.h>
+#if HAVE_CONFIG_H
+# include <config.h>
 #endif
 
 /* Copy SRC to DEST, returning the address of the terminating '\0' in DEST.  */
--- a/lib/xgetcwd.c
+++ b/lib/xgetcwd.c
@@ -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
 
@@ -26,14 +26,15 @@
 #ifndef errno
 extern int errno;
 #endif
+
 #include <sys/types.h>
 #include "pathmax.h"
 
-#ifndef HAVE_GETCWD
+#if HAVE_GETCWD
+char *getcwd ();
+#else
 char *getwd ();
-# define getcwd(buf, max) getwd (buf)
-#else
-char *getcwd ();
+# define getcwd(Buf, Max) getwd (Buf)
 #endif
 
 /* Amount to increase buffer size by in each try. */