summaryrefslogtreecommitdiff
path: root/lib/xmalloc.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-07-15 03:56:06 +0000
committerJim Meyering <jim@meyering.net>1996-07-15 03:56:06 +0000
commit19bff1c02d0e0fb32cd11c21db739e8338a757c6 (patch)
tree500fb4d19edca1f7a6c03fd66329d2ae8a61118b /lib/xmalloc.c
parentfd984b9655ac56b6c0af9474562faf659b28113c (diff)
downloadcoreutils-19bff1c02d0e0fb32cd11c21db739e8338a757c6.tar.xz
indent cpp-directives
Diffstat (limited to 'lib/xmalloc.c')
-rw-r--r--lib/xmalloc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/xmalloc.c b/lib/xmalloc.c
index a9f1975b9..33ac504e2 100644
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -16,19 +16,19 @@
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#ifdef HAVE_CONFIG_H
-#include <config.h>
+# include <config.h>
#endif
#if __STDC__
-#define VOID void
+# define VOID void
#else
-#define VOID char
+# define VOID char
#endif
#include <sys/types.h>
#if STDC_HEADERS
-#include <stdlib.h>
+# include <stdlib.h>
#else
VOID *malloc ();
VOID *realloc ();
@@ -44,7 +44,7 @@ void free ();
#endif
#ifndef EXIT_FAILURE
-#define EXIT_FAILURE 1
+# define EXIT_FAILURE 1
#endif
/* Exit value when the requested amount of memory is not available.