diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2017-10-17 13:44:00 -0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2017-12-18 17:07:02 +0300 |
commit | 6f144ff081d87308b45e44f746e98589c8246686 (patch) | |
tree | f21450181a7d3c791014efd4f527999d6eb9a006 /target/i386/hax-windows.h | |
parent | 744fc0540dd306a90680277667914ce8d38a26ee (diff) | |
download | qemu-6f144ff081d87308b45e44f746e98589c8246686.zip qemu-6f144ff081d87308b45e44f746e98589c8246686.tar.gz qemu-6f144ff081d87308b45e44f746e98589c8246686.tar.bz2 |
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>
Diffstat (limited to 'target/i386/hax-windows.h')
-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 f7c3e99..004f867 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> |