1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* 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.
This commit is contained in:
David Shaw 2003-05-21 21:31:57 +00:00
parent 628e98785a
commit f1234b8593
6 changed files with 46 additions and 45 deletions

View file

@ -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;
}