From: Jes Sorensen Date: Tue, 26 Oct 2010 08:39:27 +0000 (+0200) Subject: Remove unncessary includes X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b45e9c05dbacba8e992f0bffeca04c6379c3ad45;p=qemu.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 0d48561975..327583baf7 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"