diff options
author | Philippe Mathieu-Daudé | 2017-10-17 18:44:00 +0200 |
---|---|---|
committer | Michael Tokarev | 2017-12-18 15:07:02 +0100 |
commit | 6f144ff081d87308b45e44f746e98589c8246686 (patch) | |
tree | f21450181a7d3c791014efd4f527999d6eb9a006 | |
parent | i386/hax: remove duplicated includes (diff) | |
download | qemu-6f144ff081d87308b45e44f746e98589c8246686.tar.gz qemu-6f144ff081d87308b45e44f746e98589c8246686.tar.xz qemu-6f144ff081d87308b45e44f746e98589c8246686.zip |
i386/hax: remove duplicated include
this file in include in "target/i386/hax-i386.h":
#ifdef CONFIG_WIN32
#include "target/i386/hax-windows.h"
#endif
which guaranties that sysemu/os-win32.h is previously included (CONFIG_WIN32)
Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r-- | target/i386/hax-windows.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/i386/hax-windows.h b/target/i386/hax-windows.h index f7c3e99246..004f867694 100644 --- a/target/i386/hax-windows.h +++ b/target/i386/hax-windows.h @@ -20,7 +20,6 @@ #ifndef TARGET_I386_HAX_WINDOWS_H #define TARGET_I386_HAX_WINDOWS_H -#include <windows.h> #include <memory.h> #include <malloc.h> #include <winioctl.h> |