#ifndef __ttdefs_H
#define __ttdefs_H

typedef unsigned char	uchar;
typedef volatile uchar	*ucpv;
typedef unsigned short	ushort;
typedef unsigned int	unsint;
typedef volatile ushort	*uspv;
typedef unsigned long	ulong;
typedef volatile ulong	*ulpv;
typedef char *ptr;
typedef unsigned int uint;

typedef enum {FALSE, TRUE} bool;
typedef	void	(*vfptr)(void);

#endif