aboutsummaryrefslogtreecommitdiff
path: root/tcc.h
diff options
context:
space:
mode:
authorJoe Soroka <gits@joesoroka.com>2011-02-01 13:23:40 -0800
committerJoe Soroka <gits@joesoroka.com>2011-02-01 13:23:40 -0800
commit75c6695932b55b914f16b20dc32ff3ef1203ed4b (patch)
treece7a5642124f1be01525eacb5cff8baddaf5629e /tcc.h
parentcf08675702044c180553c866ba1fde0414f00590 (diff)
downloadtinycc-75c6695932b55b914f16b20dc32ff3ef1203ed4b.tar.gz
tinycc-75c6695932b55b914f16b20dc32ff3ef1203ed4b.tar.bz2
tccpp: fix bug in handling of recursive macros
Diffstat (limited to 'tcc.h')
-rw-r--r--tcc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tcc.h b/tcc.h
index 7d42607..a3a9c78 100644
--- a/tcc.h
+++ b/tcc.h
@@ -683,6 +683,7 @@ struct TCCState {
#define TOK_DOTS 0xcc /* three dots */
#define TOK_SHR 0xcd /* unsigned shift right */
#define TOK_PPNUM 0xce /* preprocessor number */
+#define TOK_NOSUBST 0xcf /* means following token has already been pp'd */
#define TOK_SHL 0x01 /* shift left */
#define TOK_SAR 0x02 /* signed shift right */