coff-i386.c (i3coff_object_p): Now static.
authorKen Raeburn <raeburn@cygnus>
Wed, 13 Oct 1993 19:17:05 +0000 (19:17 +0000)
committerKen Raeburn <raeburn@cygnus>
Wed, 13 Oct 1993 19:17:05 +0000 (19:17 +0000)
bfd/ChangeLog
bfd/coff-i386.c

index c8190e9438dbae90f4ec6ce61299467c4c5dd8b8..1c8e07d4322c412c71d6da58692ec83cfb3ca3c8 100644 (file)
@@ -1,5 +1,7 @@
 Wed Oct 13 14:28:17 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
 
+       * coff-i386.c (i3coff_object_p): Now static.
+
        * Makefile.in: Updated dependencies.
        (.dep, .dep1, dep.sed): New targets, to make "make dep" work
        better.
index f76332dc417bde9e2a51f1a92bfb2b9771b01bd5..981b510760e8b6728e471f7070a022b70f73f63d 100644 (file)
@@ -284,11 +284,22 @@ static reloc_howto_type howto_table[] =
       cache_ptr->addend += asect->vma;                         \
   }
 
+/* For aix386, define a variable to track the number of sections discarded
+   during a strip. */
+
+#if defined(_AIX) && defined(_I386)
+#define USE_DISCARDED_SECTIONS_COUNT
+int discarded_sections_count = 0;
+#endif
 #include "coffcode.h"
 
-bfd_target *i3coff_object_p(a)
-bfd *a ;
-{ return coff_object_p(a); }
+static bfd_target *
+i3coff_object_p(a)
+     bfd *a;
+{
+  return coff_object_p(a);
+}
 
 bfd_target
 #ifdef TARGET_SYM