From a97e45c8b825c5cbf1f0eefa08e1cfb97932d8bd Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sat, 11 Feb 2012 10:07:55 +0100 Subject: [PATCH] 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 --- tcg/tcg.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tcg/tcg.c b/tcg/tcg.c index d43fa4a9b3..351a0a3033 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"