Below is the file 'test/types.h' from this revision. You can also download the file.

/* types.h */

#ifndef _TYPES_H_
#define _TYPES_H_

/* Probably right for a PC */

typedef unsigned char uint8;
typedef signed   char int8;

typedef unsigned short uint16;
typedef signed   short int16;

typedef unsigned int uint32;
typedef signed   int int32;

#ifndef TRUE
typedef unsigned char bool;
#define TRUE 1
#define FALSE 0
#endif

#endif