summaryrefslogtreecommitdiff
path: root/lib/strtol.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/strtol.c
parentfd984b9655ac56b6c0af9474562faf659b28113c (diff)
downloadcoreutils-19bff1c02d0e0fb32cd11c21db739e8338a757c6.tar.xz
indent cpp-directives
Diffstat (limited to 'lib/strtol.c')
-rw-r--r--lib/strtol.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/strtol.c b/lib/strtol.c
index b2336a197..ad0804931 100644
--- a/lib/strtol.c
+++ b/lib/strtol.c
@@ -108,12 +108,12 @@ extern int errno;
#else
# define LONG long
-#ifndef ULONG_MAX
-# define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
-#endif
-#ifndef LONG_MAX
-# define LONG_MAX ((long int) (ULONG_MAX >> 1))
-#endif
+# ifndef ULONG_MAX
+# define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
+# endif
+# ifndef LONG_MAX
+# define LONG_MAX ((long int) (ULONG_MAX >> 1))
+# endif
#endif
#ifdef USE_WIDE_CHAR
@@ -342,9 +342,9 @@ noconv:
#undef __P
#if defined (__STDC__) && __STDC__
-#define __P(args) args
+# define __P(args) args
#else
-#define __P(args) ()
+# define __P(args) ()
#endif
/* Prototype. */