From: Jes Sorensen Date: Tue, 26 Oct 2010 08:39:27 +0000 (+0200) Subject: Remove unncessary includes X-Git-Tag: qemu-xen-4.3.0-rc1~4014 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b45e9c05dbacba8e992f0bffeca04c6379c3ad45;p=qemu-upstream-4.3-testing.git Remove unncessary includes No need to include stdlib.h for BSD as it is included by qemu-common.h, windows.h is handled by sysemu.h and osdep.c no longer needs malloc.h Signed-off-by: Jes Sorensen Signed-off-by: Blue Swirl --- diff --git a/osdep.c b/osdep.c index 0d4856197..327583baf 100644 --- a/osdep.c +++ b/osdep.c @@ -44,14 +44,6 @@ extern int madvise(caddr_t, size_t, int); #endif -#ifdef _WIN32 -#include -#elif defined(CONFIG_BSD) -#include -#else -#include -#endif - #include "qemu-common.h" #include "trace.h" #include "sysemu.h"