diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2017-10-17 13:43:59 -0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2017-12-18 17:07:02 +0300 |
commit | 744fc0540dd306a90680277667914ce8d38a26ee (patch) | |
tree | e4c4fbd594bf20005e086dc1e6524f2f80acef36 /target/i386 | |
parent | 1945e6ab47faad4778883fa5cf839ece006ea3d0 (diff) | |
download | qemu-744fc0540dd306a90680277667914ce8d38a26ee.zip qemu-744fc0540dd306a90680277667914ce8d38a26ee.tar.gz qemu-744fc0540dd306a90680277667914ce8d38a26ee.tar.bz2 |
i386/hax: remove duplicated includes
applied using ./scripts/clean-includes
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'target/i386')
-rw-r--r-- | target/i386/hax-darwin.c | 6 | ||||
-rw-r--r-- | target/i386/hax-darwin.h | 3 | ||||
-rw-r--r-- | target/i386/hax-windows.h | 2 |
3 files changed, 1 insertions, 10 deletions
diff --git a/target/i386/hax-darwin.c b/target/i386/hax-darwin.c index 1c5bbd0..ee94174 100644 --- a/target/i386/hax-darwin.c +++ b/target/i386/hax-darwin.c @@ -11,13 +11,9 @@ */ /* HAX module interface - darwin version */ -#include <sys/types.h> -#include <sys/stat.h> -#include <fcntl.h> -#include <errno.h> +#include "qemu/osdep.h" #include <sys/ioctl.h> -#include "qemu/osdep.h" #include "target/i386/hax-i386.h" hax_fd hax_mod_open(void) diff --git a/target/i386/hax-darwin.h b/target/i386/hax-darwin.h index 0c0968b..fb8e25a 100644 --- a/target/i386/hax-darwin.h +++ b/target/i386/hax-darwin.h @@ -15,10 +15,7 @@ #ifndef TARGET_I386_HAX_DARWIN_H #define TARGET_I386_HAX_DARWIN_H -#include <sys/types.h> #include <sys/ioctl.h> -#include <sys/mman.h> -#include <stdarg.h> #define HAX_INVALID_FD (-1) static inline int hax_invalid_fd(hax_fd fd) diff --git a/target/i386/hax-windows.h b/target/i386/hax-windows.h index 1d8f68d..f7c3e99 100644 --- a/target/i386/hax-windows.h +++ b/target/i386/hax-windows.h @@ -24,8 +24,6 @@ #include <memory.h> #include <malloc.h> #include <winioctl.h> -#include <string.h> -#include <stdio.h> #include <windef.h> #define HAX_INVALID_FD INVALID_HANDLE_VALUE |