diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-01-17 21:16:53 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-01-17 21:16:53 +0000 |
commit | d01a0278a0a00fb99c2d2a443025ab3fea4cd111 (patch) | |
tree | bd0563e87a5b93b8d3e3738c74f41709e15d2109 /bfd/cf-m68klynx.c | |
parent | 8a51b06cf6e52cbf5cc413bfdfdfc266f52845fb (diff) | |
download | gdb-d01a0278a0a00fb99c2d2a443025ab3fea4cd111.zip gdb-d01a0278a0a00fb99c2d2a443025ab3fea4cd111.tar.gz gdb-d01a0278a0a00fb99c2d2a443025ab3fea4cd111.tar.bz2 |
* bfd-in.h (bfd_byte, reloc_howto_type): Define here, not...
* reloc.c (bfd_byte, reloc_howto_type): here.
* Changed all occurrences of ``const struct reloc_howto_struct''
to be ``reloc_howto_type'' instead.
* bfd-in2.h, libbfd.h, libcoff.h: Rebuilt.
Avoids problems with the native Irix 5 compiler.
Diffstat (limited to 'bfd/cf-m68klynx.c')
-rw-r--r-- | bfd/cf-m68klynx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/cf-m68klynx.c b/bfd/cf-m68klynx.c index 0a4dc09..e66dd11 100644 --- a/bfd/cf-m68klynx.c +++ b/bfd/cf-m68klynx.c @@ -44,7 +44,7 @@ struct internal_syment; static bfd_reloc_status_type _bfd_m68klynx_special_fn PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); static boolean lynx_link_add_symbols PARAMS ((bfd *, struct bfd_link_info *)); -static const struct reloc_howto_struct *coff_m68k_lynx_rtype_to_howto +static reloc_howto_type *coff_m68k_lynx_rtype_to_howto PARAMS ((bfd *, asection *, struct internal_reloc *, struct coff_link_hash_entry *, struct internal_syment *, bfd_vma *)); @@ -219,7 +219,7 @@ lynx_link_add_symbols (abfd, info) coff-m68k.c, because it uses RTYPE2HOWTO. */ /*ARGSUSED*/ -static const struct reloc_howto_struct * +static reloc_howto_type * coff_m68k_lynx_rtype_to_howto (abfd, sec, rel, h, sym, addendp) bfd *abfd; asection *sec; @@ -229,7 +229,7 @@ coff_m68k_lynx_rtype_to_howto (abfd, sec, rel, h, sym, addendp) bfd_vma *addendp; { arelent relent; - const struct reloc_howto_struct *howto; + reloc_howto_type *howto; RTYPE2HOWTO (&relent, rel); |