diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-06-20 19:39:15 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-06-20 19:39:15 +0000 |
commit | 75f3ef7a635af631d1dd69a42c3a41e3da692b3a (patch) | |
tree | 3b79757bd5b54440aaee70aef57a8b5f939996ba /bfd/elf32-mips.c | |
parent | 256816cae71e3047032bb81486a7f7114268e0e3 (diff) | |
download | gdb-75f3ef7a635af631d1dd69a42c3a41e3da692b3a.zip gdb-75f3ef7a635af631d1dd69a42c3a41e3da692b3a.tar.gz gdb-75f3ef7a635af631d1dd69a42c3a41e3da692b3a.tar.bz2 |
* ecoff.c, libecoff.h, ecoffswap.h, coff-alpha.c, coff-mips.c,
elf32-mips.c: Renamed all externally visible ECOFF routines which
are local to BFD to start with _bfd_ecoff instead of just ecoff.
Diffstat (limited to 'bfd/elf32-mips.c')
-rw-r--r-- | bfd/elf32-mips.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c index 31fe8ee..6148a5a 100644 --- a/bfd/elf32-mips.c +++ b/bfd/elf32-mips.c @@ -2419,8 +2419,8 @@ static const struct ecoff_debug_swap mips_elf_ecoff_debug_swap = ecoff_swap_fdr_in, ecoff_swap_rfd_in, ecoff_swap_ext_in, - ecoff_swap_tir_in, - ecoff_swap_rndx_in, + _bfd_ecoff_swap_tir_in, + _bfd_ecoff_swap_rndx_in, /* Functions to swap out external symbolic data. */ ecoff_swap_hdr_out, ecoff_swap_dnr_out, @@ -2430,8 +2430,8 @@ static const struct ecoff_debug_swap mips_elf_ecoff_debug_swap = ecoff_swap_fdr_out, ecoff_swap_rfd_out, ecoff_swap_ext_out, - ecoff_swap_tir_out, - ecoff_swap_rndx_out, + _bfd_ecoff_swap_tir_out, + _bfd_ecoff_swap_rndx_out, /* Function to read in symbolic data. */ mips_elf_read_ecoff_info }; |