projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a77a6bc
)
Add missing intmax_t and uintmax_t
author
Ian Romanick
<ian.d.romanick@intel.com>
Fri, 13 Aug 2010 23:22:38 +0000
(16:22 -0700)
committer
Ian Romanick
<ian.d.romanick@intel.com>
Fri, 13 Aug 2010 23:22:38 +0000
(16:22 -0700)
include/c99/stdint.h
patch
|
blob
|
history
diff --git
a/include/c99/stdint.h
b/include/c99/stdint.h
index fc6459d03d2b4ac0de7b112862b4bf5856938665..6f40e0c74a2f82642c2bc1971e8ee231ce0189ce 100644
(file)
--- 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