From: Peter Schauer Date: Sat, 19 Feb 1994 11:29:48 +0000 (+0000) Subject: * coff-alpha.c (reloc_nil): Add forward declaration, add missing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a1de3cc0356a9c6d634fc6e59efe1c6e2f3b3eb;p=binutils-gdb.git * 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. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 753b40b74a5..66745261f4d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,12 @@ +Sat Feb 19 03:17:32 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * 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. + Fri Feb 18 11:41:58 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) start-sanitize-powerpc-netware diff --git a/bfd/coff-alpha.c b/bfd/coff-alpha.c index 349c24e6bb0..64ab8406867 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; }