diff options
author | Steve Chamberlain <steve@cygnus> | 1991-07-27 01:24:40 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-07-27 01:24:40 +0000 |
commit | f4d2c0bb48cb0f865676375c5134df1af222d31a (patch) | |
tree | c5e8fd81cfb38c622339c421f521bc1d3af7f537 /bfd/bout.c | |
parent | 87059abb6bd0c5ee65421231abf33174ccfd7476 (diff) | |
download | gdb-f4d2c0bb48cb0f865676375c5134df1af222d31a.zip gdb-f4d2c0bb48cb0f865676375c5134df1af222d31a.tar.gz gdb-f4d2c0bb48cb0f865676375c5134df1af222d31a.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'bfd/bout.c')
-rw-r--r-- | bfd/bout.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -42,8 +42,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ PROTO (static boolean, b_out_squirt_out_relocs,(bfd *abfd, asection *section)); PROTO (static bfd_target *, b_out_callback, (bfd *)); -PROTO (boolean, aout_slurp_symbol_table, (bfd *abfd)); -PROTO (void , aout_write_syms, ()); +PROTO (boolean, aout_32_slurp_symbol_table, (bfd *abfd)); +PROTO (void , aout_32_write_syms, ()); PROTO (static void, swap_exec_header, (bfd *abfd, struct internal_exec *execp)); @@ -219,7 +219,7 @@ b_out_write_object_contents (abfd) bfd_seek (abfd, (long)(N_SYMOFF(*exec_hdr(abfd))), SEEK_SET); - aout_write_syms (abfd); + aout_32_write_syms (abfd); bfd_seek (abfd, (long)(N_TROFF(*exec_hdr(abfd))), SEEK_SET); @@ -324,7 +324,7 @@ b_out_slurp_reloc_table (abfd, asect, symbols) arelent *reloc_cache; if (asect->relocation) return true; - if (!aout_slurp_symbol_table (abfd)) return false; + if (!aout_32_slurp_symbol_table (abfd)) return false; if (asect == obj_datasec (abfd)) { reloc_size = exec_hdr(abfd)->a_drsize; @@ -668,7 +668,7 @@ b_out_set_arch_mach (abfd, arch, machine) static int DEFUN(b_out_sizeof_headers,(abfd, exec), bfd *abfd AND - boolean execable) + boolean exec) { return sizeof(struct internal_exec); } |