added uint64 type
authorBrian <brian.paul@tungstengraphics.com>
Fri, 17 Aug 2007 17:39:45 +0000 (11:39 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Fri, 17 Aug 2007 17:39:45 +0000 (11:39 -0600)
src/mesa/pipe/p_compiler.h

index 4f96840..d139cb1 100644 (file)
 #endif
 
 
-typedef unsigned int   uint;
-typedef unsigned char  ubyte;
-typedef unsigned char  boolean;
-typedef unsigned short ushort;
+typedef unsigned int       uint;
+typedef unsigned char      ubyte;
+typedef unsigned char      boolean;
+typedef unsigned short     ushort;
+typedef unsigned long long uint64;
 
 
 #define TRUE  1
 #define FALSE 0
 
+
 /* Function inlining */
 #if defined(__GNUC__)
 #  define INLINE __inline__