4 typedef unsigned long long uint64_t;
5 typedef unsigned int uint32_t;
6 typedef unsigned short uint16_t;
7 typedef unsigned char uint8_t;
9 typedef signed long long int64_t;
10 typedef signed int int32_t;
11 typedef signed short int16_t;
12 typedef signed char int8_t;
14 typedef uint32_t uintptr_t;
15 typedef int32_t intptr_t;
17 typedef int32_t ptrdiff_t;