diff options
| author | 2026-03-21 17:55:01 +0100 | |
|---|---|---|
| committer | 2026-03-21 17:55:01 +0100 | |
| commit | 0e75fc383becccd113416677b7e26e0caf21e28b (patch) | |
| tree | 356cf6c271ea8e0b2ca0211ac0c9efe776cc2118 /src/antcc.h | |
| parent | 8b846d0245744f4eefc32f3c98b6359a3d21e659 (diff) | |
Rework handling of predefined macros.
And add some GCC predefs like __SIZE_TYPE__, __LONG_SIZE__, etc
Diffstat (limited to 'src/antcc.h')
| -rw-r--r-- | src/antcc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/antcc.h b/src/antcc.h index 59ae690..61170b9 100644 --- a/src/antcc.h +++ b/src/antcc.h @@ -144,6 +144,10 @@ enum { /* GCC include directory search order: https://gcc.gnu.org/onlinedocs/gcc }; extern CInclPath *cinclpaths[5]; +/** c_lex.c **/ +void cpp0define(const char *name, const char *body); +void cpp0undef(const char *name); + /**********/ /* Target */ /**********/ |