summaryrefslogtreecommitdiff
path: root/lib/modechange.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-09-28 18:31:00 +0000
committerJim Meyering <jim@meyering.net>1996-09-28 18:31:00 +0000
commit6a9d144a661b0827ee7347de4da14eefd841080f (patch)
tree61a610199925128f9edd5bc3faaffbf144628cff /lib/modechange.c
parentf34578f297c0c5a16d33def133a97a4a633c8e04 (diff)
downloadcoreutils-6a9d144a661b0827ee7347de4da14eefd841080f.tar.xz
.
Diffstat (limited to 'lib/modechange.c')
-rw-r--r--lib/modechange.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/modechange.c b/lib/modechange.c
index f8705778e..90060778a 100644
--- a/lib/modechange.c
+++ b/lib/modechange.c
@@ -24,30 +24,30 @@
changing the mode of many files, this probably results in a
performance gain. */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
+#if HAVE_CONFIG_H
+# include <config.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include "modechange.h"
-#ifdef STDC_HEADERS
-#include <stdlib.h>
+#if STDC_HEADERS
+# include <stdlib.h>
#else
char *malloc ();
#endif
#ifndef NULL
-#define NULL 0
+# define NULL 0
#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
/* Return newly allocated memory to hold one element of type TYPE. */