]> git.proxmox.com Git - qemu.git/commitdiff
target-m68k: Clean includes
authorStefan Weil <sw@weilnetz.de>
Wed, 1 Feb 2012 19:55:18 +0000 (20:55 +0100)
committerStefan Weil <sw@weilnetz.de>
Tue, 28 Feb 2012 21:33:42 +0000 (22:33 +0100)
config.h was missing in cpu.h.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
target-m68k/cpu.h
target-m68k/helper.c
target-m68k/translate.c

index 0667f8214ad85239acb95627e8e96dbb3d8a0f88..4cc3a35f2e948bf321e41506b5f2d84de7e88ea6 100644 (file)
@@ -24,6 +24,7 @@
 
 #define CPUState struct CPUM68KState
 
+#include "config.h"
 #include "qemu-common.h"
 #include "cpu-defs.h"
 
index 674c8e6f071d86d557d5bc957098ba27902133b1..fa675bfca676216531ff2ccd360a3354c6c3caa8 100644 (file)
  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#include <stdio.h>
-#include <string.h>
-
-#include "config.h"
 #include "cpu.h"
-#include "qemu-common.h"
 #include "gdbstub.h"
 
 #include "helpers.h"
index 0e7f1fe2c76e3979d4d067d2c04422997c7b2dbd..2bdd9dd1e3dff28c53b8ebdc64dcd2a66ff48847 100644 (file)
  * You should have received a copy of the GNU Lesser General Public
  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
-#include <stdarg.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <inttypes.h>
 
-#include "config.h"
 #include "cpu.h"
 #include "disas.h"
 #include "tcg-op.h"