* symtab.c (lookup_block_symbol): Add missing PARAMS for
function scoped prototype.
This commit is contained in:
parent
eb21b6b66b
commit
2f36d00478
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Sep 9 17:41:41 1997 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* symtab.c (lookup_block_symbol): Add missing PARAMS for
|
||||||
|
function scoped prototype.
|
||||||
|
|
||||||
Mon Sep 8 16:45:51 1997 Stu Grossman <grossman@cygnus.com>
|
Mon Sep 8 16:45:51 1997 Stu Grossman <grossman@cygnus.com>
|
||||||
|
|
||||||
* ser-e7kpc.c: Don't include w32sut.h. We no longer use the UT
|
* ser-e7kpc.c: Don't include w32sut.h. We no longer use the UT
|
||||||
|
|
|
@ -912,7 +912,8 @@ lookup_block_symbol (block, name, namespace)
|
||||||
const char *name;
|
const char *name;
|
||||||
const namespace_enum namespace;
|
const namespace_enum namespace;
|
||||||
{
|
{
|
||||||
extern struct symbol *ref_search_val (struct symbol *sym, CORE_ADDR addr);
|
extern struct symbol *ref_search_val PARAMS ((struct symbol *sym,
|
||||||
|
CORE_ADDR addr));
|
||||||
register int bot, top, inc;
|
register int bot, top, inc;
|
||||||
register struct symbol *sym;
|
register struct symbol *sym;
|
||||||
register struct symbol *sym_found = NULL;
|
register struct symbol *sym_found = NULL;
|
||||||
|
|
Loading…
Reference in a new issue