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:
parent
628e98785a
commit
f1234b8593
6 changed files with 46 additions and 45 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue