OSDN Git Service

Add missing intmax_t and uintmax_t
authorIan Romanick <ian.d.romanick@intel.com>
Fri, 13 Aug 2010 23:22:38 +0000 (16:22 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Fri, 13 Aug 2010 23:22:38 +0000 (16:22 -0700)
include/c99/stdint.h

index fc6459d..6f40e0c 100644 (file)
@@ -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