centos type.h 编译错误问题

 
 # ifndef __int8_t_defined
 #  define __int8_t_defined
 __intN_t (8, __QI__);
 __intN_t (16, __HI__);
 __intN_t (32, __SI__);
 //__intN_t (64, __DI__);
 #define __int64_t long long;
 # endif
 
 __u_intN_t (8, __QI__);
 __u_intN_t (16, __HI__);
 __u_intN_t (32, __SI__);
 __u_intN_t (64, __DI__);

主要是int64的定义问题

原文地址:https://www.cnblogs.com/zendu/p/5037314.html