summaryrefslogtreecommitdiff
path: root/src/od.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-10-19 22:38:39 +0000
committerJim Meyering <jim@meyering.net>1995-10-19 22:38:39 +0000
commit6f6a35a9a16bb79f658f836282e0d00c32be7c52 (patch)
tree35647f18d8d31eef76f6c591275f70b19432080b /src/od.c
parentd691ea7ebc0cd65b7ac3cd064fdb4c6d54061628 (diff)
downloadcoreutils-6f6a35a9a16bb79f658f836282e0d00c32be7c52.tar.xz
Indent cpp directives.
Diffstat (limited to 'src/od.c')
-rw-r--r--src/od.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/od.c b/src/od.c
index 8690ac767..91380bb6f 100644
--- a/src/od.c
+++ b/src/od.c
@@ -54,37 +54,37 @@ typedef double LONG_DOUBLE;
#endif
#if HAVE_LIMITS_H
-#include <limits.h>
+# include <limits.h>
#endif
#ifndef SCHAR_MAX
-#define SCHAR_MAX 127
+# define SCHAR_MAX 127
#endif
#ifndef SCHAR_MIN
-#define SCHAR_MIN (-128)
+# define SCHAR_MIN (-128)
#endif
#ifndef SHRT_MAX
-#define SHRT_MAX 32767
+# define SHRT_MAX 32767
#endif
#ifndef SHRT_MIN
-#define SHRT_MIN (-32768)
+# define SHRT_MIN (-32768)
#endif
#ifndef ULONG_MAX
-#define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
+# define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
#endif
#ifndef OFF_T_MAX
/* FIXME: is there a way to do this without relying on the
`8 bits per byte' assumption? */
-#define OFF_T_MAX (~((off_t)1 << (sizeof (off_t) * 8 - 1)))
+# define OFF_T_MAX (~((off_t)1 << (sizeof (off_t) * 8 - 1)))
#endif
#define STREQ(a,b) (strcmp((a), (b)) == 0)
#ifndef MAX
-#define MAX(a, b) ((a) > (b) ? (a) : (b))
+# define MAX(a, b) ((a) > (b) ? (a) : (b))
#endif
#ifndef MIN
-#define MIN(a,b) (((a) < (b)) ? (a) : (b))
+# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
/* The default number of input bytes per output line. */
@@ -92,17 +92,17 @@ typedef double LONG_DOUBLE;
/* The number of decimal digits of precision in a float. */
#ifndef FLT_DIG
-#define FLT_DIG 7
+# define FLT_DIG 7
#endif
/* The number of decimal digits of precision in a double. */
#ifndef DBL_DIG
-#define DBL_DIG 15
+# define DBL_DIG 15
#endif
/* The number of decimal digits of precision in a long double. */
#ifndef LDBL_DIG
-#define LDBL_DIG DBL_DIG
+# define LDBL_DIG DBL_DIG
#endif
char *xmalloc ();