From 3d7fc7a89ff87ab78e64d091f9d1d683a3ed39fc Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 28 Sep 1996 18:25:55 +0000 Subject: [PATCH] . --- lib/makepath.c | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/lib/makepath.c b/lib/makepath.c index d2b2c43c5..87d7eb136 100644 --- a/lib/makepath.c +++ b/lib/makepath.c @@ -17,52 +17,52 @@ /* Written by David MacKenzie and Jim Meyering. */ -#ifdef HAVE_CONFIG_H -#include +#if HAVE_CONFIG_H +# include #endif -#ifdef __GNUC__ -#define alloca __builtin_alloca +#if __GNUC__ +# define alloca __builtin_alloca #else -#ifdef HAVE_ALLOCA_H -#include -#else -#ifdef _AIX +# if HAVE_ALLOCA_H +# include +# else +# ifdef _AIX #pragma alloca -#else +# else char *alloca (); -#endif -#endif +# endif +# endif #endif #include #include #include -#ifdef HAVE_UNISTD_H -#include +#if HAVE_UNISTD_H +# include #endif -#ifdef STAT_MACROS_BROKEN -#undef S_ISDIR +#if STAT_MACROS_BROKEN +# undef S_ISDIR #endif /* STAT_MACROS_BROKEN. */ #if !defined(S_ISDIR) && defined(S_IFDIR) -#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) +# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) #endif -#ifdef STDC_HEADERS -#include +#if STDC_HEADERS +# include #endif -#ifdef HAVE_ERRNO_H -#include +#if HAVE_ERRNO_H +# include #endif #ifndef errno extern int errno; #endif -#ifdef HAVE_STRING_H +#if HAVE_STRING_H # include #else # include -- 2.11.0