aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cc.h b/cc.h
index 05459e1..d938ade 100644
--- a/cc.h
+++ b/cc.h
@@ -121,6 +121,8 @@ struct location {
struct token {
enum tokenkind kind;
+ /* whether or not the token was preceeded by a space */
+ _Bool space;
struct location loc;
char *lit;
};