Add missing intmax_t and uintmax_t

This commit is contained in:
Ian Romanick 2010-08-13 16:22:38 -07:00
parent a77a6bc008
commit d960b61ea3

View 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