aboutsummaryrefslogtreecommitdiff
path: root/include/bfd.h
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-06-07 01:32:32 +0000
committerSteve Chamberlain <steve@cygnus>1991-06-07 01:32:32 +0000
commit50a52c1a15d2bf6cf3d8c6355e833d5dba07d63a (patch)
tree5208bde79bdbdfd83884495d8f11af236c52f1dd /include/bfd.h
parent86b2c77541578f3fb57438376afc3dce35b49f98 (diff)
downloadgdb-50a52c1a15d2bf6cf3d8c6355e833d5dba07d63a.zip
gdb-50a52c1a15d2bf6cf3d8c6355e833d5dba07d63a.tar.gz
gdb-50a52c1a15d2bf6cf3d8c6355e833d5dba07d63a.tar.bz2
* oasys.h: Fixed shape of module structure
* bfd.h: better (but not great) fix for coff swap routines
Diffstat (limited to 'include/bfd.h')
-rw-r--r--include/bfd.h20
1 files changed, 8 insertions, 12 deletions
diff --git a/include/bfd.h b/include/bfd.h
index 1c91bc2..f59a80d 100644
--- a/include/bfd.h
+++ b/include/bfd.h
@@ -545,26 +545,22 @@ typedef struct bfd_target
/* Jumps for coff swapping */
-#define AUXENT void*
-#define SYMENT void*
-#define LINENO void*
-
SDEF(void, _bfd_coff_swap_aux_in,(
bfd *abfd ,
- AUXENT *ext ,
+ PTR ext,
int type,
int class ,
- union internal_auxent *in));
+ PTR in));
SDEF(void, _bfd_coff_swap_sym_in,(
bfd *abfd ,
- SYMENT *ext ,
- struct internal_syment *in));
+ PTR ext,
+ PTR in));
- SDEF(void, _bfd_coff_swap_lineno_in,(
- bfd *abfd,
- LINENO *ext,
- struct internal_lineno *in));
+ SDEF(void, _bfd_coff_swap_lineno_in, (
+ bfd *abfd,
+ PTR ext,
+ PTR in));
} bfd_target;