* som.c (som_sizeof_headers): Add missing prototype.
authorJeff Law <law@redhat.com>
Sat, 13 Nov 1993 06:52:07 +0000 (06:52 +0000)
committerJeff Law <law@redhat.com>
Sat, 13 Nov 1993 06:52:07 +0000 (06:52 +0000)
        (som_set_arch_mach): Do not abort.

bfd/ChangeLog
bfd/som.c

index d3341c36d425ad40ee44f2d2c5452dce674fa20a..e0f44ad2c4ed896e6471ec95faca3d69e81434d5 100644 (file)
@@ -1,5 +1,8 @@
 Fri Nov 12 15:29:36 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)
 
+       * som.c (som_sizeof_headers): Add missing prototype.
+       (som_set_arch_mach): Do not abort.
+
        * som.c (som_prep_headers): New function.
 
        * som.c (som_count_spaces): New function.
index 2593206c184d69261e2d0264b8b51280fbd36d8b..57a6c98c1b40e38ea4156841a9cdd7578d29949c 100644 (file)
--- a/bfd/som.c
+++ b/bfd/som.c
@@ -154,7 +154,8 @@ static unsigned long som_count_subspaces PARAMS ((bfd *));
 static int compare_syms PARAMS ((asymbol **, asymbol **));
 static unsigned long som_compute_checksum PARAMS ((bfd *));
 static boolean som_prep_headers PARAMS ((bfd *));
+static int som_sizeof_headers PARAMS ((bfd *, boolean));
+
 static reloc_howto_type som_hppa_howto_table[] =
 {
   {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
@@ -1757,9 +1758,7 @@ som_set_arch_mach (abfd, arch, machine)
      enum bfd_architecture arch;
      unsigned long machine;
 {
-  fprintf (stderr, "som_set_arch_mach unimplemented\n");
-  fflush (stderr);
-  /* Allow any architecture to be supported by the som backend */
+  /* Allow any architecture to be supported by the SOM backend */
   return bfd_default_set_arch_mach (abfd, arch, machine);
 }