fix a position to include stdint.h

This commit is contained in:
MITSUNARI Shigeo 2013-01-13 20:25:56 +09:00
parent 921aa019ae
commit 9206af36bf

View File

@ -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