whatis_exp (type_name, 1);
}
+/* Meant to be used in debug sessions, so don't export it in a header file. */
+extern void ATTRIBUTE_UNUSED debug_type (struct type *type);
+
+/* Print TYPE. */
+
+void ATTRIBUTE_UNUSED
+debug_type (struct type *type)
+{
+ type_print (type, "", gdb_stdlog, 1);
+ gdb_flush (gdb_stdlog);
+}
+
/* Print integral scalar data VAL, of type TYPE, onto stdio stream STREAM.
Used to print data from type structures in a specified type. For example,
array bounds may be characters or booleans in some languages, and this