RS/6000 support, by Metin G. Ozisik, Mimi Phûông-Thåo Võ, and John Gilmore.
[deliverable/binutils-gdb.git] / bfd / bfd.c
index 1d465b19cfefe00368b00b7763b619f7b6841f99..ccf53ce1e496fad4dae4186f0ba577e333c54537 100644 (file)
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -162,6 +162,7 @@ $};
 #include "sysdep.h"
 #include "libbfd.h"
 
+#undef strerror
 extern char *strerror();
 
 
@@ -196,6 +197,7 @@ char *bfd_errmsgs[] = { "No error",
                         "File format is ambiguous",
                         "Section has no contents",
                         "Nonrepresentable section on output",
+                       "Symbol needs debug section which does not exist",
                         "#<Invalid error code>"
                        };
 
@@ -418,6 +420,27 @@ bfd_get_mtime (abfd)
 #define bfd_set_arch_mach(abfd, arch, mach)\
         BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
 
+#define bfd_coff_swap_reloc_out(abfd, i, o) \
+        BFD_SEND (abfd, _bfd_coff_swap_reloc_out, (abfd, i, o))
+
+#define bfd_coff_swap_lineno_out(abfd, i, o) \
+        BFD_SEND (abfd, _bfd_coff_swap_lineno_out, (abfd, i, o))
+
+#define bfd_coff_swap_aux_out(abfd, i, t,c,o) \
+        BFD_SEND (abfd, _bfd_coff_swap_aux_out, (abfd, i,t,c, o))
+
+#define bfd_coff_swap_sym_out(abfd, i,o) \
+        BFD_SEND (abfd, _bfd_coff_swap_sym_out, (abfd, i, o))
+
+#define bfd_coff_swap_scnhdr_out(abfd, i,o) \
+        BFD_SEND (abfd, _bfd_coff_swap_scnhdr_out, (abfd, i, o))
+
+#define bfd_coff_swap_filehdr_out(abfd, i,o) \
+        BFD_SEND (abfd, _bfd_coff_swap_filehdr_out, (abfd, i, o))
+
+#define bfd_coff_swap_aouthdr_out(abfd, i,o) \
+        BFD_SEND (abfd, _bfd_coff_swap_aouthdr_out, (abfd, i, o))
+
 *-
 
 */
This page took 0.024147 seconds and 4 git commands to generate.