* 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.
This commit is contained in:
Peter Schauer 1994-02-19 11:29:48 +00:00
parent 084475102b
commit 3a1de3cc03
2 changed files with 15 additions and 1 deletions

View 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

View 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;
}