diff options
Diffstat (limited to 'include/stdint.h')
-rw-r--r-- | include/stdint.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/stdint.h b/include/stdint.h index dbcfbc18e..f7d15a187 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -17,7 +17,7 @@ details. */ #define __int8_t_defined typedef signed char int8_t; typedef short int16_t; -typedef long long int64_t; +typedef __int64 int64_t; #endif typedef unsigned char uint8_t; @@ -28,12 +28,12 @@ typedef unsigned short uint16_t; typedef signed char int_least8_t; typedef short int_least16_t; typedef long int_least32_t; -typedef long long int_least64_t; +typedef __int64 int_least64_t; typedef unsigned char uint_least8_t; typedef unsigned short uint_least16_t; typedef unsigned long uint_least32_t; -typedef unsigned long long uint_least64_t; +typedef unsigned __int64 uint_least64_t; /* Fastest minimum-width integer types */ @@ -45,7 +45,10 @@ typedef long long int_fast64_t; typedef unsigned char uint_fast8_t; typedef unsigned long uint_fast16_t; typedef unsigned long uint_fast32_t; -typedef unsigned long long uint_fast64_t; +typedef unsigned __int64 uint_fast64_t; + +typedef unsigned __int64 uint64_t; +typedef int ssize_t; /* Integer types capable of holding object pointers */ |