/* $Id: stdint.h 212 2024-10-02 17:44:55Z nishi $ */ #ifndef __STDINT_H__ #define __STDINT_H__ typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef signed char int8_t; typedef signed short int16_t; typedef signed int int32_t; typedef int socklen_t; #define INT32_MAX 0x7fffffff #endif