6 # error this stdint.h expects either __i386__ or __x86_64__ to be defined
10 typedef signed char int8_t;
11 typedef unsigned char uint8_t;
13 typedef signed short int16_t;
14 typedef unsigned short uint16_t;
16 typedef signed int int32_t;
17 typedef unsigned int uint32_t;
20 typedef signed long int64_t;
21 typedef unsigned long uint64_t;
23 typedef signed long long int64_t;
24 typedef unsigned long long uint64_t;