6 //typedef unsigned int uint;
7 typedef unsigned char uint8_t;
8 typedef unsigned short uint16_t;
9 typedef unsigned long uint32_t;
10 typedef unsigned long long uint64_t;
12 typedef signed char int8_t;
13 typedef signed short int16_t;
14 typedef signed long int32_t;
15 typedef signed long long int64_t;
18 typedef uint64_t intptr_t;
19 typedef uint64_t uintptr_t;
21 typedef uint32_t intptr_t;
22 typedef uint32_t uintptr_t;
25 # error "Unknown pointer size"