From: Stefan Weil Date: Sat, 11 Feb 2012 09:07:55 +0000 (+0100) Subject: tcg: Remove unneeded include statements X-Git-Tag: v1.1-rc0~318^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a97e45c8b825c5cbf1f0eefa08e1cfb97932d8bd;p=thirdparty%2Fqemu.git tcg: Remove unneeded include statements The standard include files are already included in qemu-common.h. malloc.h and alloca.h were needed for alloca() which was removed from TCG code some years ago when switching from dyngen to TCG (see commit 49516bc0d622112caac9df628caf19010fda8b67). Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- diff --git a/tcg/tcg.c b/tcg/tcg.c index d43fa4a9b32..351a0a30334 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -33,18 +33,6 @@ #define NDEBUG #endif -#include -#include -#include -#include -#include -#ifdef _WIN32 -#include -#endif -#ifdef _AIX -#include -#endif - #include "qemu-common.h" #include "cache-utils.h" #include "host-utils.h"