1 /* inttypes.h for SunOS cuff.link.cs.cmu.edu 5.5.1 Generic_103640-29 sun4u sparc SUNW,Ultra-Enterprise */ 2 #ifndef INTTYPES_H 3 #define INTTYPES_H 4 5 typedef char int8_t; 6 typedef short int16_t; 7 typedef int int32_t; 8 typedef long long int64_t; 9 typedef unsigned char uint8_t; 10 typedef unsigned short uint16_t; 11 typedef unsigned int uint32_t; 12 typedef unsigned long long uint64_t; 13 typedef long int intptr_t; 14 typedef unsigned long int uintptr_t; 15 16 #endif 17