/* $Id$ */ #ifndef _TYPES_H_ #define _TYPES_H_ #ifndef _BSD_TYPES_ typedef unsigned char u_int8_t; typedef unsigned short u_int16_t; typedef unsigned int u_int32_t; typedef unsigned long long int u_int64_t; #endif /* _BSD_TYPES_ */ #ifndef _POSIX_TYPES_ typedef unsigned char u_char; typedef unsigned short u_short; typedef unsigned int u_int; typedef unsigned long u_long; typedef unsigned short ushort; /* Sys V */ typedef unsigned int uint; /* Sys V */ #endif /* POSIX_TYPES_ */ typedef signed char s8; typedef signed short s16; typedef signed long s32; typedef unsigned char u8; typedef unsigned short u16; typedef unsigned long u32; #endif /* _TYPES_H_ */