summaryrefslogtreecommitdiff
path: root/include/c99/stdint.h
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-08-13 16:22:38 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-08-13 16:22:38 -0700
commitd960b61ea3d2ed749a41a0d0fea621415d656848 (patch)
tree8ec9ac582c5b5921d3c9d0f381c943eac2193051 /include/c99/stdint.h
parenta77a6bc008b3146c56431fa520a00e1f8dfa3938 (diff)
Add missing intmax_t and uintmax_t
Diffstat (limited to 'include/c99/stdint.h')
-rw-r--r--include/c99/stdint.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/c99/stdint.h b/include/c99/stdint.h
index fc6459d03d2..6f40e0c74a2 100644
--- a/include/c99/stdint.h
+++ b/include/c99/stdint.h
@@ -110,6 +110,9 @@ typedef unsigned __int32 uintptr_t;
#define INT64_C(__val) __val##i64
#define UINT64_C(__val) __val##ui64
+typedef int64_t intmax_t;
+typedef uint64_t uintmax_t;
+
#else
#error "Unsupported compiler"
#endif