diff options
author | John Gilmore <gnu@cygnus> | 1991-10-11 10:09:28 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-11 10:09:28 +0000 |
commit | 600d4864081c1969a5575f91564d8cb21c8e6807 (patch) | |
tree | 2948d50f24819aef88cdb42f5bf53ccf2251ed84 | |
parent | dd4646ca3aaacaf6592721c92fa125c7d344b34c (diff) | |
download | gdb-600d4864081c1969a5575f91564d8cb21c8e6807.zip gdb-600d4864081c1969a5575f91564d8cb21c8e6807.tar.gz gdb-600d4864081c1969a5575f91564d8cb21c8e6807.tar.bz2 |
Remove dead N_TXTOFF override.
Include bfd.h before sysdep.h, so ansidecl and PROTO() get defined first.
-rw-r--r-- | bfd/i386aout.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/bfd/i386aout.c b/bfd/i386aout.c index 8ca7941..78226c7 100644 --- a/bfd/i386aout.c +++ b/bfd/i386aout.c @@ -23,17 +23,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define ARCH 32 #define BYTES_IN_WORD 4 -#include <ansidecl.h> -#include <sysdep.h> #include "bfd.h" +#include "sysdep.h" #include "libbfd.h" #include "aout64.h" - -/**From: bothner@cs.wisc.edu***********************************************/ -#undef N_TXTOFF -#define N_TXTOFF(x) ( (N_MAGIC((x)) == ZMAGIC) ? PAGE_SIZE : EXEC_BYTES_SIZE) -/**************************************************************************/ - #include "stab.gnu.h" #include "ar.h" #include "libaout.h" /* BFD a.out internal data structures */ |