Do not use '#endif/#else xxx'; it is not allowed for ANSI C

This commit is contained in:
ceriel
1991-12-17 15:05:43 +00:00
parent fa0bee0b26
commit 53c4951b29
40 changed files with 364 additions and 364 deletions

View File

@@ -101,7 +101,7 @@ Compile(src, dst)
LexScan();
return 0; /* running the optimizer is not very useful */
}
#endif DEBUG
#endif /* DEBUG */
C_init(word_size, pointer_size);
if( !C_open(dst) )
fatal("couldn't open output file");
@@ -121,7 +121,7 @@ Compile(src, dst)
C_close();
#ifdef DEBUG
if( options['I'] ) Info();
#endif DEBUG
#endif /* DEBUG */
return !err_occurred;
}