From 16157cc455337732a6afe4785a75f6344e49a43f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 4 Nov 1996 18:07:38 +0000 Subject: [PATCH] libitize --- lib/stpcpy.c | 4 ++-- lib/xgetcwd.c | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/lib/stpcpy.c b/lib/stpcpy.c index e7a95a465..6369661a4 100644 --- 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 +#if HAVE_CONFIG_H +# include #endif /* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */ diff --git a/lib/xgetcwd.c b/lib/xgetcwd.c index 3615161a0..7ab220468 100644 --- a/lib/xgetcwd.c +++ b/lib/xgetcwd.c @@ -17,7 +17,7 @@ /* Written by David MacKenzie . */ -#ifdef HAVE_CONFIG_H +#if HAVE_CONFIG_H # include #endif @@ -26,14 +26,15 @@ #ifndef errno extern int errno; #endif + #include #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. */ -- 2.11.0