1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-16 06:52:23 +02:00

Indent cpp directives to reflect nesting.

This commit is contained in:
Jim Meyering
1995-10-09 03:48:08 +00:00
parent 91a709b210
commit b5c8c81d4d
+3 -3
View File
@@ -24,15 +24,15 @@ extern int errno;
#endif
#if HAVE_LIMITS_H
#include <limits.h>
# include <limits.h>
#endif
#ifndef ULONG_MAX
#define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
# define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
#endif
#ifndef LONG_MAX
#define LONG_MAX ((long int) (ULONG_MAX >> 1))
# define LONG_MAX ((long int) (ULONG_MAX >> 1))
#endif
#include "xstrtol.h"