aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/vec.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c6bf6b3..7f0a0dc 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2006-10-04 Fred Fish <fnf@specifix.com>
+
+ * vec.c: Include defs.h first. This pulls in config.h which can
+ affect other includes.
+
2006-10-04 Joel Brobecker <brobecker@adacore.com>
* somread.c (som_symtab_read): Avoid using alloca for potentially
diff --git a/gdb/vec.c b/gdb/vec.c
index 4f67e68..d5a0929 100644
--- a/gdb/vec.c
+++ b/gdb/vec.c
@@ -19,8 +19,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
-#include "vec.h"
#include "defs.h"
+#include "vec.h"
struct vec_prefix
{