summaryrefslogtreecommitdiff
path: root/src/csplit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/csplit.c')
-rw-r--r--src/csplit.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/csplit.c b/src/csplit.c
index 07b6026aa..7d45bf9a9 100644
--- a/src/csplit.c
+++ b/src/csplit.c
@@ -30,7 +30,7 @@
#include <sys/types.h>
#include <signal.h>
#ifdef HAVE_LIMITS_H
-#include <limits.h>
+# include <limits.h>
#endif /* HAVE_LIMITS_H */
#ifndef UINT_MAX
@@ -51,19 +51,19 @@
#include "xstrtoul.h"
#ifdef STDC_HEADERS
-#include <stdlib.h>
+# include <stdlib.h>
#else
char *malloc ();
char *realloc ();
#endif
#ifndef MAX
-#define MAX(a,b) (((a) > (b)) ? (a) : (b))
+# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef TRUE
-#define FALSE 0
-#define TRUE 1
+# define FALSE 0
+# define TRUE 1
#endif
/* Increment size of area for control records. */
@@ -98,9 +98,9 @@ struct control
#ifdef DEBUG
/* Some small values to test the algorithms. */
-#define START_SIZE 200
-#define INCR_SIZE 10
-#define CTRL_SIZE 1
+# define START_SIZE 200
+# define INCR_SIZE 10
+# define CTRL_SIZE 1
#endif
/* A string with a length count. */