From 02103dfd518faf327f7edc13695435308ddcead8 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Tue, 19 May 2020 14:02:28 -0700 Subject: feat: added prototype of stringizer & tokenizer macro operators --- sys/cmd/cc/cc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/cmd/cc/cc.h') 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, }; -- cgit v1.2.1