diff options
| author | grischka <grischka> | 2015-04-23 23:27:36 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2015-04-23 23:27:36 +0200 |
| commit | 72e8ff11e9802e219e4880fe6ad0796beaf7fce2 (patch) | |
| tree | 9a5326659133ad32a1e7491f0a1bc6f86ea39e42 /tcctok.h | |
| parent | 7c27186a83cefd7845d4840ef25bd08c8b65cd3b (diff) | |
| download | tinycc-72e8ff11e9802e219e4880fe6ad0796beaf7fce2.tar.gz tinycc-72e8ff11e9802e219e4880fe6ad0796beaf7fce2.tar.bz2 | |
tccpp: alternative #pragma push/pop_macro
using next_nomacro() so that for example
#define push_macro foobar
does not affect how the pragma works (same behavior
as gcc, albeit not MS's cl).
Diffstat (limited to 'tcctok.h')
| -rw-r--r-- | tcctok.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -155,6 +155,8 @@ #endif DEF(TOK_comment, "comment") DEF(TOK_lib, "lib") + DEF(TOK_push_macro, "push_macro") + DEF(TOK_pop_macro, "pop_macro") DEF(TOK_once, "once") /* builtin functions or variables */ |
