From bb8f8948728884db7ff1b9313ffce2ed61b76fe2 Mon Sep 17 00:00:00 2001 From: danghvu Date: Mon, 11 Jul 2016 13:35:06 -0500 Subject: [PATCH] windows: Remove unnecessary mman inclusion (issue #587) --- qemu/unicorn_common.h | 1 - uc.c | 3 --- 2 files changed, 4 deletions(-) diff --git a/qemu/unicorn_common.h b/qemu/unicorn_common.h index e35d129e..bd8b5f6c 100644 --- a/qemu/unicorn_common.h +++ b/qemu/unicorn_common.h @@ -2,7 +2,6 @@ #define UNICORN_COMMON_H_ #include "tcg.h" -#include // This header define common patterns/codes that will be included in all arch-sepcific // codes for unicorns purposes. diff --git a/uc.c b/uc.c index 1e72b872..d6f26ba4 100644 --- a/uc.c +++ b/uc.c @@ -15,9 +15,6 @@ #include // nanosleep #include -#ifndef _WIN32 -#include -#endif #include "uc_priv.h"