updated Makefiles
[cparser] / type.h
diff --git a/type.h b/type.h
index 07dac8e..30050da 100644 (file)
--- a/type.h
+++ b/type.h
@@ -42,8 +42,6 @@ void type_set_output(FILE *out);
 
 void inc_type_visited(void);
 
-void set_print_compound_entries(bool enabled);
-
 /**
  * returns true if type contains integer numbers
  */
@@ -81,6 +79,7 @@ bool types_compatible(const type_t *type1, const type_t *type2);
 
 bool pointers_compatible(const type_t *type1, const type_t *type2);
 
+type_t *get_unqualified_type(type_t *type);
 type_t *skip_typeref(type_t *type);
 
 #endif