diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-01-21 14:26:20 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-01-21 14:26:20 +0000 |
commit | 27ad511f8406349fd2ba5bbeabb7a522601e1e81 (patch) | |
tree | 2eb03e9abe803ae48e4aecc4a3efc4fcd6235cdf /gdb/coffread.c | |
parent | fcc41f68c4d95fe487647949a1535622f0c1b9c3 (diff) | |
download | gdb-27ad511f8406349fd2ba5bbeabb7a522601e1e81.zip gdb-27ad511f8406349fd2ba5bbeabb7a522601e1e81.tar.gz gdb-27ad511f8406349fd2ba5bbeabb7a522601e1e81.tar.bz2 |
* coffread.c, xcoffread.c: Include <coff/internal.h>
before "symfile.h".
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r-- | gdb/coffread.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c index 5a99a37..74e1ce8 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -23,13 +23,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "symtab.h" #include "gdbtypes.h" #include "breakpoint.h" + #include "bfd.h" -#include "symfile.h" -#include "objfiles.h" -#include "buildsym.h" -#include "gdb-stabs.h" -#include "stabsread.h" -#include "complaints.h" #include <obstack.h> #include <string.h> @@ -40,6 +35,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "coff/internal.h" /* Internal format of COFF symbols in BFD */ #include "libcoff.h" /* FIXME secret internal data from BFD */ +#include "symfile.h" +#include "objfiles.h" +#include "buildsym.h" +#include "gdb-stabs.h" +#include "stabsread.h" +#include "complaints.h" + struct coff_symfile_info { file_ptr min_lineno_offset; /* Where in file lowest line#s are */ file_ptr max_lineno_offset; /* 1+last byte of line#s in file */ |