1 #ifndef _SUSV2_SOURCE 2 #error "inttypes.h is SUSV2" 3 #endif 4 5 #ifndef _INTTYPES_H_ 6 #define _INTTYPES_H_ 1 7 8 typedef int _intptr_t; 9 typedef unsigned int _uintptr_t; 10 11 12 typedef char int8_t; 13 typedef short int16_t; 14 typedef int int32_t; 15 typedef long long int64_t; 16 typedef unsigned char uint8_t; 17 typedef unsigned short uint16_t; 18 typedef unsigned int uint32_t; 19 typedef unsigned long long uint64_t; 20 typedef _intptr_t intptr_t; 21 typedef _uintptr_t uintptr_t; 22 23 #endif 24