aboutsummaryrefslogtreecommitdiff
path: root/tcc.h
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2014-04-12 12:00:13 +0800
committerThomas Preud'homme <robotux@celest.fr>2014-04-12 16:11:42 +0800
commit6e56bb387db8af055ff6de71a23b270de55c3dc8 (patch)
treec44b72ccaa7914b4e269cbca9a73e00d22eb59a6 /tcc.h
parent9714d2e75f70f8fcca9fd7b596440a346e504742 (diff)
downloadtinycc-6e56bb387db8af055ff6de71a23b270de55c3dc8.tar.gz
tinycc-6e56bb387db8af055ff6de71a23b270de55c3dc8.tar.bz2
Fix preprocessor concat with empty arg
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 9955839..dda2fc1 100644
--- a/tcc.h
+++ b/tcc.h
@@ -836,6 +836,7 @@ struct TCCState {
/* <-- */
#define TOK_TWOSHARPS 0xc0 /* ## preprocessing token */
+#define TOK_PLCHLDR 0xc1 /* placeholder token as defined in C99 */
#define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
#define TOK_ADDC1 0xc3 /* add with carry generation */
#define TOK_ADDC2 0xc4 /* add with carry use */