Browse Source

PARAMS elimination.

binutils-2_11-branch
Kevin Buettner 27 years ago
parent
commit
b37bcaa80e
  1. 4
      gdb/ChangeLog
  2. 2
      gdb/ser-ocd.c
  3. 6
      gdb/symtab.c

4
gdb/ChangeLog

@ -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

2
gdb/ser-ocd.c

@ -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");

6
gdb/symtab.c

@ -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…
Cancel
Save