Do not use '#undef aap xxx'; it is not allowed for ANSI C

This commit is contained in:
ceriel 1991-12-16 14:15:46 +00:00
parent 950e26815e
commit 019590a290
4 changed files with 48 additions and 48 deletions

View file

@ -1,5 +1,5 @@
!File: lint.h !File: lint.h
#undef LINT 1 /* if defined, 'lint' is produced */ /*#define LINT 1 /* if defined, 'lint' is produced */
!File: pathlength.h !File: pathlength.h
@ -75,7 +75,7 @@
!File: botch_free.h !File: botch_free.h
#undef BOTCH_FREE 1 /* when defined, botch freed memory, as a check */ /*#define BOTCH_FREE 1 /* when defined, botch freed memory, as a check */
!File: dataflow.h !File: dataflow.h
@ -83,7 +83,7 @@
!File: debug.h !File: debug.h
#undef DEBUG 1 /* perform various self-tests */ /*#define DEBUG 1 /* perform various self-tests */
!File: use_tmp.h !File: use_tmp.h
@ -112,16 +112,16 @@
!File: nopp.h !File: nopp.h
#undef NOPP 1 /* if NOT defined, use built-int preprocessor */ /*#define NOPP 1 /* if NOT defined, use built-int preprocessor */
!File: nobitfield.h !File: nobitfield.h
#undef NOBITFIELD 1 /* if NOT defined, implement bitfields */ /*#define NOBITFIELD 1 /* if NOT defined, implement bitfields */
!File: spec_arith.h !File: spec_arith.h
/* describes internal compiler arithmetics */ /* describes internal compiler arithmetics */
#undef SPECIAL_ARITHMETICS /* something different from native long */ /*#define SPECIAL_ARITHMETICS /* something different from native long */
!File: static.h !File: static.h
@ -129,19 +129,19 @@
!File: nofloat.h !File: nofloat.h
#undef NOFLOAT 1 /* if NOT defined, floats are implemented */ /*#define NOFLOAT 1 /* if NOT defined, floats are implemented */
!File: noRoption.h !File: noRoption.h
#undef NOROPTION 1 /* if NOT defined, R option is implemented */ /*#define NOROPTION 1 /* if NOT defined, R option is implemented */
!File: nocross.h !File: nocross.h
#undef NOCROSS 1 /* if NOT defined, cross compiler */ /*#define NOCROSS 1 /* if NOT defined, cross compiler */
!File: regcount.h !File: regcount.h
#undef REGCOUNT 1 /* count occurrences for register messages */ /*#define REGCOUNT 1 /* count occurrences for register messages */
!File: dbsymtab.h !File: dbsymtab.h
#define DBSYMTAB 1 /* ability to produce symbol table for debugger #define DBSYMTAB 1 /* ability to produce symbol table for debugger

View file

@ -1,5 +1,5 @@
!File: lint.h !File: lint.h
#undef LINT 1 /* if defined, 'lint' is produced */ /*#define LINT 1 /* if defined, 'lint' is produced */
!File: pathlength.h !File: pathlength.h
@ -75,23 +75,23 @@
!File: botch_free.h !File: botch_free.h
#undef BOTCH_FREE 1 /* when defined, botch freed memory, as a check */ /*#define BOTCH_FREE 1 /* when defined, botch freed memory, as a check */
!File: dataflow.h !File: dataflow.h
#undef DATAFLOW 1 /* produce some compile-time xref */ /*#define DATAFLOW 1 /* produce some compile-time xref */
!File: debug.h !File: debug.h
#undef DEBUG 1 /* perform various self-tests */ /*#define DEBUG 1 /* perform various self-tests */
!File: use_tmp.h !File: use_tmp.h
#undef PREPEND_SCOPES 1 /* collect exa, exp, ina and inp commands /*#define PREPEND_SCOPES 1 /* collect exa, exp, ina and inp commands
and if USE_TMP is defined let them and if USE_TMP is defined let them
precede the rest of the generated precede the rest of the generated
compact code */ compact code */
#undef USE_TMP 1 /* use C_insertpart, C_endpart mechanism /*#define USE_TMP 1 /* use C_insertpart, C_endpart mechanism
to generate EM-code in the order needed to generate EM-code in the order needed
for the code-generators. If not defined, for the code-generators. If not defined,
the old-style peephole optimizer is the old-style peephole optimizer is
@ -108,7 +108,7 @@
!File: inputtype.h !File: inputtype.h
#undef INP_READ_IN_ONE 1 /* read input file in one */ /*#define INP_READ_IN_ONE 1 /* read input file in one */
!File: nopp.h !File: nopp.h
@ -116,12 +116,12 @@
!File: nobitfield.h !File: nobitfield.h
#undef NOBITFIELD 1 /* if NOT defined, implement bitfields */ /*#define NOBITFIELD 1 /* if NOT defined, implement bitfields */
!File: spec_arith.h !File: spec_arith.h
/* describes internal compiler arithmetics */ /* describes internal compiler arithmetics */
#undef SPECIAL_ARITHMETICS /* something different from native long */ /*#define SPECIAL_ARITHMETICS /* something different from native long */
!File: static.h !File: static.h
@ -129,7 +129,7 @@
!File: nofloat.h !File: nofloat.h
#undef NOFLOAT 1 /* if NOT defined, floats are implemented */ /*#define NOFLOAT 1 /* if NOT defined, floats are implemented */
!File: noRoption.h !File: noRoption.h
@ -137,15 +137,15 @@
!File: nocross.h !File: nocross.h
#undef NOCROSS 1 /* if NOT defined, cross compiler */ /*#define NOCROSS 1 /* if NOT defined, cross compiler */
!File: regcount.h !File: regcount.h
#undef REGCOUNT 1 /* count occurrences for register messages */ /*#define REGCOUNT 1 /* count occurrences for register messages */
!File: dbsymtab.h !File: dbsymtab.h
#undef DBSYMTAB 1 /* ability to produce symbol table for debugger /*#define DBSYMTAB 1 /* ability to produce symbol table for debugger
*/ */

View file

@ -76,23 +76,23 @@
!File: botch_free.h !File: botch_free.h
#undef BOTCH_FREE 1 /* when defined, botch freed memory, as a check */ /*#define BOTCH_FREE 1 /* when defined, botch freed memory, as a check */
!File: dataflow.h !File: dataflow.h
#undef DATAFLOW 1 /* produce some compile-time xref */ /*#define DATAFLOW 1 /* produce some compile-time xref */
!File: debug.h !File: debug.h
#undef DEBUG 1 /* perform various self-tests */ /*#define DEBUG 1 /* perform various self-tests */
!File: use_tmp.h !File: use_tmp.h
#undef PREPEND_SCOPES 1 /* collect exa, exp, ina and inp commands /*#define PREPEND_SCOPES 1 /* collect exa, exp, ina and inp commands
and if USE_TMP is defined let them and if USE_TMP is defined let them
precede the rest of the generated precede the rest of the generated
compact code */ compact code */
#undef USE_TMP 1 /* use C_insertpart, C_endpart mechanism /*#define USE_TMP 1 /* use C_insertpart, C_endpart mechanism
to generate EM-code in the order needed to generate EM-code in the order needed
for the code-generators. If not defined, for the code-generators. If not defined,
the old-style peephole optimizer is the old-style peephole optimizer is
@ -112,17 +112,17 @@
!File: nopp.h !File: nopp.h
#undef NOPP 1 /* if NOT defined, use built-int preprocessor */ /*#define NOPP 1 /* if NOT defined, use built-int preprocessor */
!File: nobitfield.h !File: nobitfield.h
#undef NOBITFIELD 1 /* if NOT defined, implement bitfields */ /*#define NOBITFIELD 1 /* if NOT defined, implement bitfields */
!File: spec_arith.h !File: spec_arith.h
/* describes internal compiler arithmetics */ /* describes internal compiler arithmetics */
#undef SPECIAL_ARITHMETICS /* something different from native long */ /*#define SPECIAL_ARITHMETICS /* something different from native long */
#undef UNSIGNED_ARITH unsigned arith /*#define UNSIGNED_ARITH unsigned arith /* when it is supported */
!File: static.h !File: static.h
@ -130,14 +130,14 @@
!File: nocross.h !File: nocross.h
#undef NOCROSS 1 /* if NOT defined, cross compiler */ /*#define NOCROSS 1 /* if NOT defined, cross compiler */
!File: regcount.h !File: regcount.h
#undef REGCOUNT 1 /* count occurrences for register messages */ /*#define REGCOUNT 1 /* count occurrences for register messages */
!File: dbsymtab.h !File: dbsymtab.h
#undef DBSYMTAB 1 /* ability to produce symbol table for debugger */ /*#define DBSYMTAB 1 /* ability to produce symbol table for debugger */

View file

@ -75,23 +75,23 @@
!File: botch_free.h !File: botch_free.h
#undef BOTCH_FREE 1 /* when defined, botch freed memory, as a check */ /*#define BOTCH_FREE 1 /* when defined, botch freed memory, as a check */
!File: dataflow.h !File: dataflow.h
#undef DATAFLOW 1 /* produce some compile-time xref */ /*#define DATAFLOW 1 /* produce some compile-time xref */
!File: debug.h !File: debug.h
#undef DEBUG 1 /* perform various self-tests */ /*#define DEBUG 1 /* perform various self-tests */
!File: use_tmp.h !File: use_tmp.h
#undef PREPEND_SCOPES 1 /* collect exa, exp, ina and inp commands /*#define PREPEND_SCOPES 1 /* collect exa, exp, ina and inp commands
and if USE_TMP is defined let them and if USE_TMP is defined let them
precede the rest of the generated precede the rest of the generated
compact code */ compact code */
#undef USE_TMP 1 /* use C_insertpart, C_endpart mechanism /*#define USE_TMP 1 /* use C_insertpart, C_endpart mechanism
to generate EM-code in the order needed to generate EM-code in the order needed
for the code-generators. If not defined, for the code-generators. If not defined,
the old-style peephole optimizer is the old-style peephole optimizer is
@ -112,16 +112,16 @@
!File: nopp.h !File: nopp.h
#undef NOPP 1 /* if NOT defined, use built-int preprocessor */ /*#define NOPP 1 /* if NOT defined, use built-int preprocessor */
!File: nobitfield.h !File: nobitfield.h
#undef NOBITFIELD 1 /* if NOT defined, implement bitfields */ /*#define NOBITFIELD 1 /* if NOT defined, implement bitfields */
!File: spec_arith.h !File: spec_arith.h
/* describes internal compiler arithmetics */ /* describes internal compiler arithmetics */
#undef SPECIAL_ARITHMETICS /* something different from native long */ /*#define SPECIAL_ARITHMETICS /* something different from native long */
!File: static.h !File: static.h
@ -129,22 +129,22 @@
!File: nofloat.h !File: nofloat.h
#undef NOFLOAT 1 /* if NOT defined, floats are implemented */ /*#define NOFLOAT 1 /* if NOT defined, floats are implemented */
!File: noRoption.h !File: noRoption.h
#undef NOROPTION 1 /* if NOT defined, R option is implemented */ /*#define NOROPTION 1 /* if NOT defined, R option is implemented */
!File: nocross.h !File: nocross.h
#undef NOCROSS 1 /* if NOT defined, cross compiler */ /*#define NOCROSS 1 /* if NOT defined, cross compiler */
!File: regcount.h !File: regcount.h
#undef REGCOUNT 1 /* count occurrences for register messages */ /*#define REGCOUNT 1 /* count occurrences for register messages */
!File: dbsymtab.h !File: dbsymtab.h
#undef DBSYMTAB 1 /* debugger support */ /*#define DBSYMTAB 1 /* debugger support */