6 typedef unsigned char uint8_t;
7 typedef unsigned short uint16_t;
8 typedef unsigned int uint32_t;
9 typedef unsigned long long uint64_t;
11 typedef signed char int8_t;
12 typedef signed short int16_t;
13 typedef signed int int32_t;
14 typedef signed long long int64_t;
17 typedef int32_t intptr_t;
18 typedef uint32_t uintptr_t;
19 #elif ARCHDIR_is_x86_64
20 typedef int64_t intptr_t;
21 typedef uint64_t uintptr_t;
22 #elif ARCHDIR_is_armv7
23 typedef int32_t intptr_t;
24 typedef uint32_t uintptr_t;
26 # error "Unknown pointer size"
29 //typedef uint64_t off_t;