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

#ifndef __TYPES_H
#define __TYPES_H

typedef int bool;
#define TRUE 1
#define FALSE 0

#define NULL 0

typedef int size_t;

#endif /* __TYPES_H */