summaryrefslogtreecommitdiff
path: root/include/stdint.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-04-11 10:38:00 -0400
committerRich Felker <dalias@aerifal.cx>2011-04-11 10:38:00 -0400
commit28bde3b78746c4f773600c415fbc740efec4e311 (patch)
treea79ebafff04991f1ee27ae0876e9e22cece2f362 /include/stdint.h
parentdae17a1aaf25d8333e729173d86659066607d87d (diff)
downloadmusl-28bde3b78746c4f773600c415fbc740efec4e311.tar.gz
cleanup types stuff in headers, fix missing u_int*_t in sys/types.h
Diffstat (limited to 'include/stdint.h')
-rw-r--r--include/stdint.h10
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)