diff options
-rw-r--r-- | include/stdint.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/stdint.h b/include/stdint.h index b22c349d4..96560d7a7 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -19,11 +19,13 @@ details. */ #define __int8_t_defined typedef signed char int8_t; typedef short int16_t; +typedef int int32_t; typedef __int64 int64_t; #endif typedef unsigned char uint8_t; typedef unsigned short uint16_t; +typedef unsigned int uint32_t; /* Minimum-width integer types */ |