diff options
author | David Shaw <[email protected]> | 2003-05-24 18:38:35 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-05-24 18:38:35 +0000 |
commit | ea35e3b65f5e741ce2feebd53831681f9e807884 (patch) | |
tree | 43d449ca34f21b926a5233000897bc3cc5d8bfcd /tools/crlf.c | |
parent | * bithelp.h, des.c, random.c, rndlinux.c, sha1.c, blowfish.c, elgamal.c, (diff) | |
download | gnupg-ea35e3b65f5e741ce2feebd53831681f9e807884.tar.gz gnupg-ea35e3b65f5e741ce2feebd53831681f9e807884.zip |
* bftest.c, crlf.c, mk-tdata.c, mpicalc.c, shmtest.c: Edit all
preprocessor instructions to remove whitespace before the '#'. This is not
required by C89, but there are some compilers out there that don't like
it.
Diffstat (limited to '')
-rw-r--r-- | tools/crlf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/crlf.c b/tools/crlf.c index e6ac8c70f..ecb6eecdb 100644 --- a/tools/crlf.c +++ b/tools/crlf.c @@ -25,12 +25,12 @@ main(int argc, char **argv) lc = -1; while( (c=getchar()) != EOF ) { - #if 0 +#if 0 if( c == '\r' && lc == ' ' ) fprintf(stderr,"SP,CR at %d\n", off ); if( c == '\n' && lc == ' ' ) fprintf(stderr,"SP,LF at %d\n", off ); - #endif +#endif if( c == '\n' && lc == '\r' ) putchar(c); else if( c == '\n' ) { @@ -50,4 +50,3 @@ main(int argc, char **argv) return 0; } - |