aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/cc/cc.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/cmd/cc/cc.h')
-rw-r--r--sys/cmd/cc/cc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/cmd/cc/cc.h b/sys/cmd/cc/cc.h
index de1ec3f..8fc5f73 100644
--- a/sys/cmd/cc/cc.h
+++ b/sys/cmd/cc/cc.h
@@ -528,8 +528,9 @@ enum
Mreg = iota(Kregister),
Mtls = iota(Ktls),
Mtype = iota(Ktypedef),
+ Mextern = iota(Kextern),
- MaskMem = Mauto | Mstatic | Mreg | Mtls | Mtype,
+ MaskMem = Mauto | Mstatic | Mreg | Mtls | Mtype | Mextern,
/* qualifiers */
Qconst = iota(Kconst),