aboutsummaryrefslogtreecommitdiff
path: root/bfd/bfd.c
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-07-16 16:12:29 +0000
committerSteve Chamberlain <steve@cygnus>1991-07-16 16:12:29 +0000
commit8fd6eb087bbd88fa0fa229efb09187b5493d5754 (patch)
tree5914c301c2f4559b219dbef2955cd1546d384c15 /bfd/bfd.c
parente7218a07c72c48896a6239f458754f180f5c94ed (diff)
downloadgdb-8fd6eb087bbd88fa0fa229efb09187b5493d5754.zip
gdb-8fd6eb087bbd88fa0fa229efb09187b5493d5754.tar.gz
gdb-8fd6eb087bbd88fa0fa229efb09187b5493d5754.tar.bz2
Added #define for special gdb coff entry points
Diffstat (limited to 'bfd/bfd.c')
-rw-r--r--bfd/bfd.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/bfd/bfd.c b/bfd/bfd.c
index c582f1d..b78216a 100644
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -417,6 +417,15 @@ bfd_get_mtime (abfd)
#define bfd_stat_arch_elt(abfd, stat) \
BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
+
+#define bfd_coff_swap_aux_in(a,e,t,c,i) \
+ BFD_SEND (a, _bfd_coff_swap_aux_in, (a,e,t,c,i))
+
+#define bfd_coff_swap_sym_in(a,e,i) \
+ BFD_SEND (a, _bfd_coff_swap_sym_in, (a,e,i))
+
+#define bfd_coff_swap_lineno_in(a,e,i) \
+ BFD_SEND ( a, _bfd_coff_swap_lineno_in, (a,e,i))
*-
*/