aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorDavid D. Zuhn <zoo@cygnus>1993-06-29 15:30:57 +0000
committerDavid D. Zuhn <zoo@cygnus>1993-06-29 15:30:57 +0000
commit77641260c51cf182f5cffe5549b138bc84745a06 (patch)
treec742a7542161103d88ddc00b2e319144b44421ec /gdb
parentfd09c96316bf1f5afce7d1bcf2a254a2c113a853 (diff)
downloadgdb-77641260c51cf182f5cffe5549b138bc84745a06.zip
gdb-77641260c51cf182f5cffe5549b138bc84745a06.tar.gz
gdb-77641260c51cf182f5cffe5549b138bc84745a06.tar.bz2
fix include file ordering problem (bfd.h vs. symfile.h)
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/remote-mips.c2
-rw-r--r--gdb/remote-nindy.c2
3 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 457935bb..e594a65 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+Tue Jun 29 08:29:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
+
+ * remote-mips.c, remote-nindy.c: move bfd.h before symfile.h (for file_ptr decl)
+
Tue Jun 29 09:11:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* dbxread.c (process_one_symbol): If we find a LOC_BLOCK where we
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c
index ccc2bad..23cd5c4 100644
--- a/gdb/remote-mips.c
+++ b/gdb/remote-mips.c
@@ -21,8 +21,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "defs.h"
#include "inferior.h"
-#include "symfile.h"
#include "bfd.h"
+#include "symfile.h"
#include "wait.h"
#include "gdbcmd.h"
#include "gdbcore.h"
diff --git a/gdb/remote-nindy.c b/gdb/remote-nindy.c
index 033306b..55efac7 100644
--- a/gdb/remote-nindy.c
+++ b/gdb/remote-nindy.c
@@ -102,11 +102,11 @@ NINDY ROM monitor at the other end of the line.
#include "frame.h"
#include "inferior.h"
+#include "bfd.h"
#include "symfile.h"
#include "target.h"
#include "gdbcore.h"
#include "command.h"
-#include "bfd.h"
#include "ieee-float.h"
#include "wait.h"