diff options
author | John Gilmore <gnu@cygnus> | 1992-11-05 11:13:01 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-11-05 11:13:01 +0000 |
commit | fefb4b30e634f3a70c538e63ac4a5445b0bee333 (patch) | |
tree | 2abb637a6d01170029776a555583d558a3633be2 /bfd/reloc.c | |
parent | 042bf84cf70958140c1d7411981ff065e0ebb322 (diff) | |
download | gdb-fefb4b30e634f3a70c538e63ac4a5445b0bee333.zip gdb-fefb4b30e634f3a70c538e63ac4a5445b0bee333.tar.gz gdb-fefb4b30e634f3a70c538e63ac4a5445b0bee333.tar.bz2 |
Cleanup: Replace all uses of EXFUN in the BFD sources, with PARAMS.
* archures.c, reloc.c, section.c, tekhex.c: Use PARAMS in
declaring pointers to functions.
* cache.c, elf.c: Move static function decls to top, use PARAMS.
* seclet.h: Declare external function with PARAMS.
* libbfd.h: Update, based on changes in source code and chew.
Diffstat (limited to 'bfd/reloc.c')
-rw-r--r-- | bfd/reloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/reloc.c b/bfd/reloc.c index 6f59116..327a7eb 100644 --- a/bfd/reloc.c +++ b/bfd/reloc.c @@ -295,13 +295,13 @@ CODE_FRAGMENT . called rather than the normal function. This allows really . strange relocation methods to be accomodated (eg, i960 callj . instructions). *} -. bfd_reloc_status_type EXFUN ((*special_function), -. (bfd *abfd, +. bfd_reloc_status_type (*special_function) +. PARAMS ((bfd *abfd, . arelent *reloc_entry, . struct symbol_cache_entry *symbol, . PTR data, . asection *input_section, -. bfd *output_bfd )); +. bfd *output_bfd)); . . {* The textual name of the relocation type. *} . char *name; |