projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7218a0
)
Added #define for special gdb coff entry points
author
Steve Chamberlain
<steve@cygnus>
Tue, 16 Jul 1991 16:12:29 +0000
(16:12 +0000)
committer
Steve Chamberlain
<steve@cygnus>
Tue, 16 Jul 1991 16:12:29 +0000
(16:12 +0000)
bfd/bfd.c
patch
|
blob
|
history
diff --git
a/bfd/bfd.c
b/bfd/bfd.c
index c582f1d2ba5a3821da38b601221488694ad598b0..b78216ac7fd4088ae6cf17d29e066ae6318c23fa 100644
(file)
--- 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))
*-
*/