
/* Amiga - compatibility kludge */

#ifndef _SYS_INTTYPES_H_
#define	_SYS_INTTYPES_H_

#include <sys/types.h>
typedef u_int8_t uint8_t;
typedef u_int16_t uint16_t;
typedef u_int32_t uint32_t;
typedef u_int64_t uint64_t;

#endif
