* coff-alpha.c (reloc_nil): Add forward declaration, add missing
authorPeter Schauer <Peter.Schauer@mytum.de>
Sat, 19 Feb 1994 11:29:48 +0000 (11:29 +0000)
committerPeter Schauer <Peter.Schauer@mytum.de>
Sat, 19 Feb 1994 11:29:48 +0000 (11:29 +0000)
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.

bfd/ChangeLog
bfd/coff-alpha.c

index 753b40b74a590dfcab1feaf5f944ab1ff2161151..66745261f4d3adee2707c398d23ca4baf3fd8f0a 100644 (file)
@@ -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
index 349c24e6bb09c71f0f2a670cc65dc2799b778e9d..64ab84068677a04a29f68118ace2aa708879c9ca 100644 (file)
@@ -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;
 }