diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-08-21 17:30:58 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-08-21 17:30:58 +0000 |
commit | 2aa9c9b1a1766027d6e5723797277d9775ebf2bb (patch) | |
tree | 2e8e8d42e1adbbfe64b72c85970f536fb7acd8bb /gdb/dbxread.c | |
parent | 63f64d4ec182d25ef7a900f599a968b0ec111b99 (diff) | |
download | gdb-2aa9c9b1a1766027d6e5723797277d9775ebf2bb.tar.gz |
Protoization.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 2cb594e6643..5a8a09f983a 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -549,9 +549,7 @@ record_minimal_symbol (char *name, CORE_ADDR address, int type, table (as opposed to a shared lib or dynamically loaded file). */ static void -dbx_symfile_read (objfile, mainline) - struct objfile *objfile; - int mainline; /* FIXME comments above */ +dbx_symfile_read (struct objfile *objfile, int mainline) { bfd *sym_bfd; int val; @@ -813,10 +811,8 @@ static int cont_count = 0; /* Arrange for function F to be called with arguments SYM and P later in the stabs reading process. */ void -process_later (sym, p, f) - struct symbol *sym; - char *p; - int (*f) (struct objfile *, struct symbol *, char *); +process_later (struct symbol *sym, char *p, + int (*f) (struct objfile *, struct symbol *, char *)) { /* Allocate more space for the deferred list. */ |