
/*
 *  SYS/TYPES.H
 */

#ifndef SYS_TYPES_H
#define SYS_TYPES_H

#ifndef TIME_H
#include <time.h>
#endif
/*#ifndef STDLIB_H*/
/*#include <stdlib.h>*/
/*#endif*/
#ifndef STDIO_H
#include <stdio.h>
#endif
#ifndef ERRNO_H
#include <errno.h>
#endif

typedef unsigned char u_char;
typedef unsigned short u_short;
typedef unsigned long u_long;
typedef unsigned int u_int;
typedef int off_t;

typedef void *caddr_t;

#endif
