From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:33041) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0vhi-0005x5-8M for qemu-devel@nongnu.org; Fri, 24 Feb 2012 09:01:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S0vha-0007cM-RZ for qemu-devel@nongnu.org; Fri, 24 Feb 2012 09:00:58 -0500 Received: from e06smtp16.uk.ibm.com ([195.75.94.112]:38435) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0vha-0007cA-J5 for qemu-devel@nongnu.org; Fri, 24 Feb 2012 09:00:50 -0500 Received: from /spool/local by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 24 Feb 2012 14:00:49 -0000 Received: from d06av07.portsmouth.uk.ibm.com (d06av07.portsmouth.uk.ibm.com [9.149.37.248]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q1OE0lQZ2916504 for ; Fri, 24 Feb 2012 14:00:47 GMT Received: from d06av07.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q1OE0kD3003920 for ; Fri, 24 Feb 2012 07:00:47 -0700 From: Stefan Hajnoczi Date: Fri, 24 Feb 2012 14:00:39 +0000 Message-Id: <1330092041-13801-2-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1330092041-13801-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1330092041-13801-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 1/3] tcg: Remove unneeded include statements List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Stefan Weil , qemu-devel@nongnu.org, Stefan Hajnoczi From: Stefan Weil 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 files changed, 0 insertions(+), 12 deletions(-) diff --git a/tcg/tcg.c b/tcg/tcg.c index d43fa4a..351a0a3 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" -- 1.7.9