diff options
Diffstat (limited to 'cc.h')
-rw-r--r-- | cc.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -220,6 +220,7 @@ struct type { } basic; struct { unsigned long long length; + enum typequal ptrqual; } array; struct { bool isprototype, isvararg, isnoreturn, paraminfo; @@ -439,7 +440,7 @@ struct type *typecomposite(struct type *, struct type *); struct type *typeunqual(struct type *, enum typequal *); struct type *typecommonreal(struct type *, unsigned, struct type *, unsigned); struct type *typepromote(struct type *, unsigned); -struct type *typeadjust(struct type *); +struct type *typeadjust(struct type *, enum typequal *); enum typeprop typeprop(struct type *); struct member *typemember(struct type *, const char *, unsigned long long *); bool typehasint(struct type *, unsigned long long, bool); |