mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 14:50:10 +01:00
added uint64 type
This commit is contained in:
parent
89cda7bdc8
commit
2fc54f5bb5
1 changed files with 6 additions and 4 deletions
|
|
@ -39,15 +39,17 @@
|
|||
#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__
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue