aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cc.h b/cc.h
index cae963d..c076de3 100644
--- a/cc.h
+++ b/cc.h
@@ -252,6 +252,7 @@ struct decl {
enum declkind kind;
enum linkage linkage;
struct type *type;
+ enum typequal qual;
struct value *value;
/* objects and functions */
@@ -416,7 +417,7 @@ extern struct type typevalist, typevalistptr;
/* decl */
-struct decl *mkdecl(enum declkind, struct type *, enum linkage);
+struct decl *mkdecl(enum declkind, struct type *, enum typequal, enum linkage);
_Bool decl(struct scope *, struct func *);
struct type *typename(struct scope *);