diff options
Diffstat (limited to 'include/stdint.h')
-rw-r--r-- | include/stdint.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/stdint.h b/include/stdint.h index 4d24fd2e..8e187a5f 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -38,6 +38,16 @@ #include <bits/alltypes.h> +typedef int8_t int_least8_t; +typedef int16_t int_least16_t; +typedef int32_t int_least32_t; +typedef int64_t int_least64_t; + +typedef uint8_t uint_least8_t; +typedef uint16_t uint_least16_t; +typedef uint32_t uint_least32_t; +typedef uint64_t uint_least64_t; + #if !defined __cplusplus || defined __STDC_LIMIT_MACROS #define INT8_MIN (-1-0x7f) |