#ifndef _TYPES_H
#define _TYPES_H

#ifdef _AMIGA
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#endif

typedef char		int8;
typedef unsigned char	int8u;
typedef short		int16;
typedef unsigned short	int16u;
typedef int		int32;
typedef unsigned int	int32u;

#endif /* _TYPES_H */
