diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1994-02-19 11:29:48 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1994-02-19 11:29:48 +0000 |
commit | 3a1de3cc0356a9c6d634fc6e59efe1c6e2f3b3eb (patch) | |
tree | 62b414396c236fe3571f292bdb80279abe983dc6 /bfd/coff-alpha.c | |
parent | 084475102bfbccb6380363d6613965ef48e3c644 (diff) | |
download | gdb-3a1de3cc0356a9c6d634fc6e59efe1c6e2f3b3eb.zip gdb-3a1de3cc0356a9c6d634fc6e59efe1c6e2f3b3eb.tar.gz gdb-3a1de3cc0356a9c6d634fc6e59efe1c6e2f3b3eb.tar.bz2 |
* coff-alpha.c (reloc_nil): Add forward declaration, add missing
error_message argument.
* coff-sparc.c (bfd_coff_generic_reloc): Add forward declaration,
add missing error_message argument.
* mipsbsd.c (mips_fix_hi16_s): Add forward declaration, add missing
error_message argument.
Diffstat (limited to 'bfd/coff-alpha.c')
-rw-r--r-- | bfd/coff-alpha.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bfd/coff-alpha.c b/bfd/coff-alpha.c index 349c24e..64ab840 100644 --- a/bfd/coff-alpha.c +++ b/bfd/coff-alpha.c @@ -112,13 +112,18 @@ static boolean alpha_relocate_section PARAMS ((bfd *, struct bfd_link_info *, /* How to process the various reloc types. */ static bfd_reloc_status_type -reloc_nil (abfd, reloc, sym, data, sec, output_bfd) +reloc_nil PARAMS ((bfd *, arelent *, asymbol *, PTR, + asection *, bfd *, char **)); + +static bfd_reloc_status_type +reloc_nil (abfd, reloc, sym, data, sec, output_bfd, error_message) bfd *abfd; arelent *reloc; asymbol *sym; PTR data; asection *sec; bfd *output_bfd; + char **error_message; { return bfd_reloc_ok; } |