2003-01-17 Andrew Cagney <ac131313@redhat.com>

* main.c (captured_main): Don't use PTR.
	* cp-valprint.c (cp_print_class_method): Replace STREQ with strcmp.
	* gdbtypes.c (lookup_primitive_typename): Ditto.
	(lookup_struct_elt_type): Ditto.
	* f-valprint.c (info_common_command): Ditto.
	(list_all_visible_commons): Ditto.
	* jv-typeprint.c (java_type_print_base): Ditto.
This commit is contained in:
Andrew Cagney 2003-01-17 19:12:19 +00:00
parent a84d24ee80
commit 762f08a397
6 changed files with 16 additions and 7 deletions

View file

@ -173,7 +173,7 @@ captured_main (void *data)
#endif /* MPW */
/* This needs to happen before the first use of malloc. */
init_malloc ((PTR) NULL);
init_malloc (NULL);
#if defined (ALIGN_STACK_ON_STARTUP)
i = (int) &count & 0x3;