From fd825fb800e681dc0ffd8a70cde358efa01a2c01 Mon Sep 17 00:00:00 2001 From: Adrian Herrera Date: Fri, 1 Apr 2016 23:38:32 +1100 Subject: [PATCH] Added stdint include to x86.h x86.h referenced types defined in stdint.h (e.g. uint16_t, etc.), but didn't actually include stdint.h --- include/unicorn/x86.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/unicorn/x86.h b/include/unicorn/x86.h index fe33c723..b0e02d8d 100644 --- a/include/unicorn/x86.h +++ b/include/unicorn/x86.h @@ -8,6 +8,8 @@ extern "C" { #endif +#include + // Memory-Management Register for instructions IDTR, GDTR, LDTR, TR. // Borrow from SegmentCache in qemu/target-i386/cpu.h typedef struct uc_x86_mmr {