aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cc.h b/cc.h
index 956e2e9..51b7cdc 100644
--- a/cc.h
+++ b/cc.h
@@ -282,6 +282,9 @@ struct decl {
/* the function might have an "inline definition" (C11 6.7.4p7) */
_Bool inlinedefn;
} func;
+ struct {
+ struct decl *next;
+ } enumconst;
enum builtinkind builtin;
} u;
};
@@ -431,6 +434,7 @@ struct type *typepromote(struct type *, unsigned);
struct type *typeadjust(struct type *);
enum typeprop typeprop(struct type *);
struct member *typemember(struct type *, const char *, unsigned long long *);
+_Bool typehasint(struct type *, unsigned long long, _Bool);
struct param *mkparam(char *, struct type *, enum typequal);