mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-30 05:23:49 +08:00
PARAMS elimination.
This commit is contained in:
parent
aa787a8959
commit
b37bcaa80e
@ -1,3 +1,7 @@
|
||||
2000-06-13 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* ser-ocd.c, symtab.c: Eliminate use of PARAMS from these files.
|
||||
|
||||
Tue Jun 13 09:21:23 2000 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* configure.host (hppa*64*): Renamed from hppa2.0w per
|
||||
|
@ -49,7 +49,7 @@ ocd_open (scb, name)
|
||||
if (handle == NULL)
|
||||
error ("Can't load Wigglers.dll");
|
||||
|
||||
dll_do_command = ((int (*)PARAMS ((const char *, char *)))
|
||||
dll_do_command = ((int (*) (const char *, char *))
|
||||
GetProcAddress (handle, "do_command"));
|
||||
if (dll_do_command == NULL)
|
||||
error ("Can't find do_command function in Wigglers.dll");
|
||||
|
@ -77,9 +77,9 @@ char *operator_chars (char *, char **);
|
||||
|
||||
static int find_line_common (struct linetable *, int, int *);
|
||||
|
||||
static struct partial_symbol *lookup_partial_symbol PARAMS
|
||||
((struct partial_symtab *, const char *,
|
||||
int, namespace_enum));
|
||||
static struct partial_symbol *lookup_partial_symbol (struct partial_symtab *,
|
||||
const char *, int,
|
||||
namespace_enum);
|
||||
|
||||
static struct partial_symbol *fixup_psymbol_section (struct
|
||||
partial_symbol *,
|
||||
|
Loading…
Reference in New Issue
Block a user