#ifndef _U_H
#define _U_H

#include <stdlib.h>

typedef unsigned short ushort;
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long ulong;

#define nil NULL

#endif
