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
This commit is contained in:
Adrian Herrera 2016-04-01 23:38:32 +11:00
parent 86823f53da
commit fd825fb800
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,8 @@
extern "C" {
#endif
#include <stdint.h>
// Memory-Management Register for instructions IDTR, GDTR, LDTR, TR.
// Borrow from SegmentCache in qemu/target-i386/cpu.h
typedef struct uc_x86_mmr {