added uint64 type

This commit is contained in:
Brian 2007-08-17 11:39:45 -06:00
parent 89cda7bdc8
commit 2fc54f5bb5

View file

@ -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__