diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/stdint.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/stdint.h b/common/stdint.h index 9316d56..250efb5 100644 --- a/common/stdint.h +++ b/common/stdint.h @@ -136,10 +136,14 @@ typedef unsigned long long uint_fast64_t; /* 7.18.1.4 Integer types capable of holding object pointers */ +#ifndef _WIN64
+ typedef int intptr_t; typedef unsigned uintptr_t; +#endif + /* 7.18.1.5 Greatest-width integer types */ |