diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-02-11 10:07:55 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-02-23 08:59:51 +0000 |
commit | a97e45c8b825c5cbf1f0eefa08e1cfb97932d8bd (patch) | |
tree | da9e3b4fa9d85c6ff9213285a6f32d2285b07718 /tcg | |
parent | 235fe3bfd46b1104575b540d0bc3fdf584030b99 (diff) |
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 <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -33,18 +33,6 @@ #define NDEBUG #endif -#include <stdarg.h> -#include <stdlib.h> -#include <stdio.h> -#include <string.h> -#include <inttypes.h> -#ifdef _WIN32 -#include <malloc.h> -#endif -#ifdef _AIX -#include <alloca.h> -#endif - #include "qemu-common.h" #include "cache-utils.h" #include "host-utils.h" |