26 typedef uint16_t uint;
27 typedef uint32_t ulong;
28 typedef uint64_t ulonglong;
29 #elif defined(__ILP32__) 30 typedef uint32_t uint;
31 typedef uint32_t ulong;
32 typedef uint64_t ulonglong;
33 #elif defined(__LLP64__) 34 typedef uint32_t uint;
35 typedef uint32_t ulong;
36 typedef uint64_t ulonglong;
37 #elif defined(__LP64__) 38 typedef uint32_t uint;
39 typedef uint64_t ulong;
40 typedef uint64_t ulonglong;
44 #define __NOOP do {} while (0) uint16_t ushort
Definition: TypeDefs.h:23
uint8_t uchar
Definition: TypeDefs.h:22