1 #ifndef _INTTYPES_H_ 2 #define _INTTYPES_H_ 3 /* 4 ** Distributed under the terms of the OpenBeOS License. 5 */ 6 7 8 typedef signed char int8_t; 9 typedef signed short int int16_t; 10 typedef signed int int32_t; 11 typedef signed long long int64_t; 12 13 typedef unsigned char u_int8_t; 14 typedef unsigned short int u_int16_t; 15 typedef unsigned int u_int32_t; 16 typedef unsigned long long u_int64_t; 17 18 19 #endif /* _INTTYPES_H_ */ 20