标准数据类型宏定义
https://blog.csdn.net/qq_33195791/article/details/82431811
保证最终在程序中使用的类型的位数是一定;例如64位系统的long int是 8个字节(64位),那么在32位系统中,为了保持64位,需要一个long long int的类型;
即
# if __WORDSIZE == 64 typedef long int int64_t; # else __extension__ typedef long long int int64_t; # endif