From 28bde3b78746c4f773600c415fbc740efec4e311 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 11 Apr 2011 10:38:00 -0400 Subject: cleanup types stuff in headers, fix missing u_int*_t in sys/types.h --- include/stdint.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'include/stdint.h') 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 +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) -- cgit v1.2.1