Mercurial > hg > octave-kai > gnulib-hg
changeset 495:44604817c6e2
Indent cpp directives to reflect nesting.
author | Jim Meyering <jim@meyering.net> |
---|---|
date | Mon, 09 Oct 1995 03:48:08 +0000 |
parents | e4bb4d9fc4ef |
children | 39f6e38131a6 |
files | lib/xstrtol.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lib/xstrtol.c +++ b/lib/xstrtol.c @@ -24,15 +24,15 @@ #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"