/* $Id: stdint.h 301 2024-10-10 02:06:20Z nishi $ */ #ifndef __STDINT_H__ #define __STDINT_H__ typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef char int8_t; typedef short int16_t; typedef int int32_t; #define INT32_MAX 0x7fffffff #endif