This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH v4 14/16] extension language API for GDB: eval.c, main.c changes
- From: Doug Evans <xdje42 at gmail dot com>
- To: gdb-patches at sourceware dot org
- Date: Wed, 15 Jan 2014 11:25:53 -0800
- Subject: [PATCH v4 14/16] extension language API for GDB: eval.c, main.c changes
- Authentication-results: sourceware.org; auth=none
This patch contains the changes to eval.c, main.c.
The inclusion of python.h is unnecessary.
2014-01-15 Doug Evans <xdje42@gmail.com>
* eval.c: Delete #include "python/python.h".
* main.c: Delete #include "python/python.h".
diff --git a/gdb/eval.c b/gdb/eval.c
index 949f76c..cd0c20e 100644
--- a/gdb/eval.c
+++ b/gdb/eval.c
@@ -40,7 +40,6 @@
#include "valprint.h"
#include "gdb_obstack.h"
#include "objfiles.h"
-#include "python/python.h"
#include "gdb_assert.h"
diff --git a/gdb/main.c b/gdb/main.c
index efb49f5..59015f5 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -39,7 +39,6 @@
#include "main.h"
#include "source.h"
#include "cli/cli-cmds.h"
-#include "python/python.h"
#include "objfiles.h"
#include "auto-load.h"
#include "maint.h"