From: Stefan Weil Date: Wed, 1 Feb 2012 19:55:18 +0000 (+0100) Subject: target-m68k: Clean includes X-Git-Tag: v1.1-rc0~283^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3aef481a6b043e6995d2edef49e89489b4f1e2cc;p=thirdparty%2Fqemu.git target-m68k: Clean includes config.h was missing in cpu.h. Signed-off-by: Stefan Weil --- diff --git a/target-m68k/cpu.h b/target-m68k/cpu.h index 0667f8214ad..4cc3a35f2e9 100644 --- a/target-m68k/cpu.h +++ b/target-m68k/cpu.h @@ -24,6 +24,7 @@ #define CPUState struct CPUM68KState +#include "config.h" #include "qemu-common.h" #include "cpu-defs.h" diff --git a/target-m68k/helper.c b/target-m68k/helper.c index 674c8e6f071..fa675bfca67 100644 --- a/target-m68k/helper.c +++ b/target-m68k/helper.c @@ -18,12 +18,7 @@ * License along with this library; if not, see . */ -#include -#include - -#include "config.h" #include "cpu.h" -#include "qemu-common.h" #include "gdbstub.h" #include "helpers.h" diff --git a/target-m68k/translate.c b/target-m68k/translate.c index 0e7f1fe2c76..2bdd9dd1e3d 100644 --- a/target-m68k/translate.c +++ b/target-m68k/translate.c @@ -17,13 +17,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see . */ -#include -#include -#include -#include -#include -#include "config.h" #include "cpu.h" #include "disas.h" #include "tcg-op.h"