diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-06-04 00:41:10 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-06-04 00:41:10 +0000 |
commit | 507f3c78fb4a1235b731350d60f1bf0ce94b4175 (patch) | |
tree | 6ea9ac74469d05832c141119201193804a03f09c /gdb/symfile.h | |
parent | 450005e7c2e864ed0b7ab8c85947716cc707b98a (diff) | |
download | gdb-507f3c78fb4a1235b731350d60f1bf0ce94b4175.zip gdb-507f3c78fb4a1235b731350d60f1bf0ce94b4175.tar.gz gdb-507f3c78fb4a1235b731350d60f1bf0ce94b4175.tar.bz2 |
Eliminate PARAMS from function pointer declarations.
Diffstat (limited to 'gdb/symfile.h')
-rw-r--r-- | gdb/symfile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/symfile.h b/gdb/symfile.h index 177085b..56cf465 100644 --- a/gdb/symfile.h +++ b/gdb/symfile.h @@ -88,13 +88,13 @@ struct sym_fns called during symbol_file_add, when we begin debugging an entirely new program. */ - void (*sym_new_init) PARAMS ((struct objfile *)); + void (*sym_new_init) (struct objfile *); /* Reads any initial information from a symbol file, and initializes the struct sym_fns SF in preparation for sym_read(). It is called every time we read a symbol file for any reason. */ - void (*sym_init) PARAMS ((struct objfile *)); + void (*sym_init) (struct objfile *); /* sym_read (objfile, mainline) Reads a symbol file into a psymtab (or possibly a symtab). @@ -104,12 +104,12 @@ struct sym_fns symbol file (e.g. shared library or dynamically loaded file) is being read. */ - void (*sym_read) PARAMS ((struct objfile *, int)); + void (*sym_read) (struct objfile *, int); /* Called when we are finished with an objfile. Should do all cleanup that is specific to the object file format for the particular objfile. */ - void (*sym_finish) PARAMS ((struct objfile *)); + void (*sym_finish) (struct objfile *); /* This function produces a file-dependent section_offsets structure, allocated in the objfile's storage, and based on the parameter. @@ -118,7 +118,7 @@ struct sym_fns a string, where NULL means the default, and others are parsed in a file dependent way. */ - void (*sym_offsets) PARAMS ((struct objfile *, struct section_addr_info *)); + void (*sym_offsets) (struct objfile *, struct section_addr_info *); /* Finds the next struct sym_fns. They are allocated and initialized in whatever module implements the functions pointed to; an |