* rs6000-nat.c (add_vmap, vmap_ldinfo, vmap_exec): Replace

DEPRECATED_STREQ by its expression.
	* coffread.c (coff_locate_sections, coff_symtab_read): Likewise.
	* xcoffread.c (read_xcoff_symtab, read_symbol_lineno, find_linenos)
	(scan_xcoff_symtab): Likewise.
	* hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code): Likewise.
	* f-lang.c (find_common_for_function): Likewise.
	* objc-exp.y (parse_number): Likewise.

	* defs.h (DEPRECATED_STREQ): Remove.
This commit is contained in:
Markus Deuling 2008-01-16 11:21:42 +00:00
parent d15cf01ce6
commit 7ecb65322d
8 changed files with 41 additions and 26 deletions

View file

@ -637,8 +637,8 @@ find_common_for_function (char *name, char *funcname)
while (tmp != NULL)
{
if (DEPRECATED_STREQ (tmp->name, name)
&& DEPRECATED_STREQ (tmp->owning_function, funcname))
if (strcmp (tmp->name, name) == 0
&& strcmp (tmp->owning_function, funcname) == 0)
return (tmp);
else
tmp = tmp->next;