1typedef signed char int8_t;
2typedef short int16_t;
3typedef int int32_t;
4typedef long int64_t;
5
6typedef unsigned char uint8_t;
7typedef unsigned short uint16_t;
8typedef unsigned int uint32_t;
9typedef unsigned long uint64_t;
10
11#define __PTR_SIZE 64
12