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/symmisc.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | binutils-gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz |
PARAMS removal.
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r-- | gdb/symmisc.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 1a806ccff6a..1f46bc79112 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -56,16 +56,16 @@ static void dump_psymtab (struct objfile *, struct partial_symtab *, static void dump_msymbols (struct objfile *, struct ui_file *); -static void dump_objfile PARAMS ((struct objfile *)); +static void dump_objfile (struct objfile *); -static int block_depth PARAMS ((struct block *)); +static int block_depth (struct block *); static void print_partial_symbols (struct partial_symbol **, int, char *, struct ui_file *); -static void free_symtab_block PARAMS ((struct objfile *, struct block *)); +static void free_symtab_block (struct objfile *, struct block *); -void _initialize_symmisc PARAMS ((void)); +void _initialize_symmisc (void); struct print_symbol_args { @@ -74,10 +74,9 @@ struct print_symbol_args struct ui_file *outfile; }; -static int print_symbol PARAMS ((PTR)); +static int print_symbol (PTR); -static void -free_symtab_block PARAMS ((struct objfile *, struct block *)); +static void free_symtab_block (struct objfile *, struct block *); /* Free a struct block <- B and all the symbols defined in that block. */ |