mirror of
https://github.com/FEX-Emu/xbyak.git
synced 2025-02-23 14:50:45 +00:00
fix a position to include stdint.h
This commit is contained in:
parent
921aa019ae
commit
9206af36bf
@ -41,6 +41,9 @@
|
||||
#include <sys/mman.h>
|
||||
#include <stdlib.h>
|
||||
#endif
|
||||
#if !defined(_MSC_VER) || (_MSC_VER >= 1600)
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
#if defined(__x86_64__) && !defined(__MINGW64__)
|
||||
#define XBYAK64_GCC
|
||||
@ -78,7 +81,6 @@ enum {
|
||||
typedef unsigned __int64 uint64;
|
||||
typedef __int64 sint64;
|
||||
#else
|
||||
#include <stdint.h>
|
||||
typedef uint64_t uint64;
|
||||
typedef int64_t sint64;
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user