diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/mipsread.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | ppe42-binutils-a14ed312fd86dd2c862847230931451da2e49942.tar.gz ppe42-binutils-a14ed312fd86dd2c862847230931451da2e49942.zip |
PARAMS removal.
Diffstat (limited to 'gdb/mipsread.c')
-rw-r--r-- | gdb/mipsread.c | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/gdb/mipsread.c b/gdb/mipsread.c index 279541812e..2c90b5612d 100644 --- a/gdb/mipsread.c +++ b/gdb/mipsread.c @@ -42,23 +42,19 @@ #include "elf/common.h" #include "elf/mips.h" -extern void _initialize_mipsread PARAMS ((void)); +extern void _initialize_mipsread (void); -static void -mipscoff_new_init PARAMS ((struct objfile *)); +static void mipscoff_new_init (struct objfile *); -static void -mipscoff_symfile_init PARAMS ((struct objfile *)); +static void mipscoff_symfile_init (struct objfile *); -static void -mipscoff_symfile_read PARAMS ((struct objfile *, int)); +static void mipscoff_symfile_read (struct objfile *, int); -static void -mipscoff_symfile_finish PARAMS ((struct objfile *)); +static void mipscoff_symfile_finish (struct objfile *); static void -read_alphacoff_dynamic_symtab PARAMS ((struct section_offsets *, - struct objfile * objfile)); +read_alphacoff_dynamic_symtab (struct section_offsets *, + struct objfile *objfile); /* Initialize anything that needs initializing when a completely new symbol file is specified (not just adding some symbols from another @@ -194,8 +190,7 @@ struct alphacoff_dynsecinfo asection *got_sect; /* Section pointer for .got section */ }; -static void -alphacoff_locate_sections PARAMS ((bfd *, asection *, void *)); +static void alphacoff_locate_sections (bfd *, asection *, void *); /* We are called once per section from read_alphacoff_dynamic_symtab. We need to examine each section we are passed, check to see |