minor arch.h change

This commit is contained in:
Jay Sorg 2017-01-27 13:06:28 -08:00 committed by jsorg71
parent b5029c2596
commit d7967ec897
1 changed files with 4 additions and 2 deletions

View File

@ -34,12 +34,14 @@ typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed int int32_t;
typedef unsigned int uint32_t;
typedef signed long long int64_t;
typedef unsigned long long uint64_t;
#if defined(_WIN64)
typedef signed __int64 int64_t;
typedef unsigned __int64 uint64_t;
typedef signed __int64 intptr_t;
typedef unsigned __int64 uintptr_t;
#else
typedef signed long long int64_t;
typedef unsigned long long uint64_t;
typedef signed long intptr_t;
typedef unsigned long uintptr_t;
#endif