nuclear@0: #ifndef INTTYPES_H_ nuclear@0: #define INTTYPES_H_ nuclear@0: nuclear@0: typedef signed char int8_t; nuclear@0: typedef unsigned char uint8_t; nuclear@0: typedef short int16_t; nuclear@0: typedef unsigned short uint16_t; nuclear@0: typedef long int32_t; nuclear@0: typedef unsigned long uint32_t; nuclear@0: nuclear@0: #endif /* INTTYPES_H_ */