diff options
author | Jim Meyering <jim@meyering.net> | 1999-02-03 15:23:21 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-02-03 15:23:21 +0000 |
commit | 4ae35f8a8953548dacb77dca591de1d9c02a6c8c (patch) | |
tree | 593439d94023afbf408d453438238114a82fe171 /src | |
parent | cd9a08e476c9fcf5be7919eb32a01ddf70eab8a3 (diff) | |
download | coreutils-4ae35f8a8953548dacb77dca591de1d9c02a6c8c.tar.xz |
cpp indent
Diffstat (limited to 'src')
-rw-r--r-- | src/ansi2knr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ansi2knr.c b/src/ansi2knr.c index 22effa2d0..a92668b95 100644 --- a/src/ansi2knr.c +++ b/src/ansi2knr.c @@ -1,6 +1,6 @@ /* Copyright (C) 1989, 1997, 1998, 1999 Aladdin Enterprises. All rights reserved. */ -/*$Id: ansi2knr.c,v 1.12 1999/02/03 02:01:06 meyering Exp $*/ +/*$Id: ansi2knr.c,v 1.13 1999/02/03 15:23:21 meyering Exp $*/ /* Convert ANSI C function definitions to K&R ("traditional C") syntax */ /* @@ -163,14 +163,14 @@ program under the GPL. * Compensate for this here. */ #ifdef isascii -# undef HAVE_ISASCII /* just in case */ -# define HAVE_ISASCII 1 +# undef HAVE_ISASCII /* just in case */ +# define HAVE_ISASCII 1 #else #endif #if STDC_HEADERS || !HAVE_ISASCII -# define is_ascii(c) 1 +# define is_ascii(c) 1 #else -# define is_ascii(c) isascii(c) +# define is_ascii(c) isascii(c) #endif #define is_space(c) (is_ascii(c) && isspace(c)) |