1 #ifndef __COMPAT_H
2 #define __COMPAT_H
3 
4 #ifdef SOLARIS
5 typedef	unsigned char	u_int8_t;
6 typedef	unsigned short	u_int16_t;
7 typedef	unsigned int	u_int32_t;
8 #endif
9 
10 #endif
11