* coffread.c, xcoffread.c: Include <coff/internal.h>
authorJim Kingdon <jkingdon@engr.sgi.com>
Fri, 21 Jan 1994 14:26:20 +0000 (14:26 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Fri, 21 Jan 1994 14:26:20 +0000 (14:26 +0000)
before "symfile.h".

gdb/ChangeLog
gdb/coffread.c
gdb/xcoffread.c

index d29f5cbf31f8419f298a44a64d1b98c3eb9bdc4a..5f91ab35975f22b1ae8cff3d9e11c27583ced272 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jan 21 09:23:33 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
+
+       * coffread.c, xcoffread.c: Include <coff/internal.h>
+       before "symfile.h".
+
 Thu Jan 20 17:30:55 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
        * coffread.c (coff_getfilename): Make it not static.
index 5a99a370d1a05dae9ab1696fdb1dbbbed5ccd4df..74e1ce81e9f75d3c3be29e264cafd92dbfe95124 100644 (file)
@@ -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 */
index 71fe6e02603b674a9657aafa04a0d167dcda0843..11e1df011e93d75130dee438b9b3d786e2648fdc 100644 (file)
@@ -41,6 +41,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include <sys/stat.h>
 #include <sys/debug.h>
 
+#include "coff/internal.h"     /* FIXME, internal data from BFD */
+#include "libcoff.h"           /* FIXME, internal data from BFD */
+#include "coff/rs6000.h"       /* FIXME, raw file-format guts of xcoff */
+
 #include "symtab.h"
 #include "gdbtypes.h"
 #include "symfile.h"
@@ -49,10 +53,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "stabsread.h"
 #include "complaints.h"
 
-#include "coff/internal.h"     /* FIXME, internal data from BFD */
-#include "libcoff.h"           /* FIXME, internal data from BFD */
-#include "coff/rs6000.h"       /* FIXME, raw file-format guts of xcoff */
-
 /* For interface with stabsread.c.  */
 #include "aout/stab_gnu.h"