| 1 | /* Some Comment */ |
| 2 | |
| 3 | int foo(); |
| 4 | |
| 5 | #undef SOME_NO |
| 6 | #undef SOME_TRUE |
| 7 | #undef SOME_FALSE |
| 8 | #undef SOME_ZERO |
| 9 | #undef SOME_ONE |
| 10 | #undef SOME_TEN |
| 11 | #undef SOME_ENUM |
| 12 | #undef SOME_ENUM_LITERAL |
| 13 | #undef SOME_STRING |
| 14 | |
| 15 | // Used twice |
| 16 | #undef SOME_TRUE |
| 17 | |
| 18 | #undef PREFIX_SPACE |
| 19 | #undef	PREFIX_TAB |
| 20 | #undef POSTFIX_SPACE |
| 21 | #undef POSTFIX_TAB |
| 22 | |
| 23 | // #undef with underscored variable name |
| 24 | #undef SOME_UNDERSCORED |
| 25 | |
| 26 | // #undef with extra tokens after variable name (ignored) |
| 27 | #undef SOME_ONE extra ignored tokens |
| 28 | |
| 29 | // non-#undef # lines pass through unchanged |
| 30 | #define KEPT_DEFINE value |
| 31 | #include <kept.h> |