aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/cc/cc.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-19 14:02:28 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-19 14:02:28 -0700
commit02103dfd518faf327f7edc13695435308ddcead8 (patch)
treeb25b7d30d44c49f62deedc2aef172560535ab113 /sys/cmd/cc/cc.h
parent6492ec3098fae844d8265d94a33f86426965c8c6 (diff)
feat: added prototype of stringizer & tokenizer macro operators
Diffstat (limited to 'sys/cmd/cc/cc.h')
-rw-r--r--sys/cmd/cc/cc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/cmd/cc/cc.h b/sys/cmd/cc/cc.h
index f5d3d28..dab351a 100644
--- a/sys/cmd/cc/cc.h
+++ b/sys/cmd/cc/cc.h
@@ -186,6 +186,7 @@ enum
Vun = iota(13),
Vfloat = iota(14),
Vstr = iota(15),
+ Vwstr = iota(16),
Vmask = Vchar - 1,
};