X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=types.h;h=4db82f3a67d879a593c82fc2d6162f2e65987e96;hb=fee559c8e58c8c01b85e20dac7d2010939c88d1a;hp=ddb8d41bba62f85de204eb8842656c6239233634;hpb=bc624857ad8caa300dd45554676e5013c8235880;p=cparser diff --git a/types.h b/types.h index ddb8d41..4db82f3 100644 --- a/types.h +++ b/types.h @@ -24,6 +24,7 @@ extern type_t *type_error_type; +extern type_t *type_bool; extern type_t *type_char; extern type_t *type_const_char; extern type_t *type_double; @@ -33,6 +34,7 @@ extern type_t *type_long_double; extern type_t *type_long_long; extern type_t *type_long; extern type_t *type_short; +extern type_t *type_unsigned_short; extern type_t *type_signed_char; extern type_t *type_unsigned_int; extern type_t *type_unsigned_long_long; @@ -91,5 +93,6 @@ extern type_t *type_unsigned_int64; extern type_t *type_unsigned_int128; void init_basic_types(void); +void init_builtin_types(void); #endif