Mesa (glsl2): Add missing intmax_t and uintmax_t

Ian Romanick idr at kemper.freedesktop.org
Fri Aug 13 23:28:58 UTC 2010


Module: Mesa
Branch: glsl2
Commit: d960b61ea3d2ed749a41a0d0fea621415d656848
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d960b61ea3d2ed749a41a0d0fea621415d656848

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Fri Aug 13 16:22:38 2010 -0700

Add missing intmax_t and uintmax_t

---

 include/c99/stdint.h |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/include/c99/stdint.h b/include/c99/stdint.h
index fc6459d..6f40e0c 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




More information about the mesa-commit mailing list