diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-06-14 00:59:07 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-06-14 00:59:07 +0000 |
commit | b37bcaa80e9561dc3efb3ba852b87bb9cfdc64ba (patch) | |
tree | 71e8fd97caacf776670c3d4750567e934132ca56 /gdb | |
parent | aa787a89597ec19c654f7edf7c6a7a33bef6ccc7 (diff) | |
download | gdb-b37bcaa80e9561dc3efb3ba852b87bb9cfdc64ba.zip gdb-b37bcaa80e9561dc3efb3ba852b87bb9cfdc64ba.tar.gz gdb-b37bcaa80e9561dc3efb3ba852b87bb9cfdc64ba.tar.bz2 |
PARAMS elimination.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/ser-ocd.c | 2 | ||||
-rw-r--r-- | gdb/symtab.c | 6 |
3 files changed, 8 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6daf6af..dff4b98 100644 --- a/gdb/ChangeLog +++ b/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 diff --git a/gdb/ser-ocd.c b/gdb/ser-ocd.c index c5c7103..deb2d3d 100644 --- a/gdb/ser-ocd.c +++ b/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"); diff --git a/gdb/symtab.c b/gdb/symtab.c index 5f0e84a..fd9c150 100644 --- a/gdb/symtab.c +++ b/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 *, |