/* bool.h -- Header file defining the data type '_bool'.
   MR 22/07/00
*/
 
#ifndef _BOOL_H_
#define _BOOL_H_

typedef int _bool;

// The integer values 0 and 1 are simply used for teh
// truth values ''false'' and ''true''.

#endif //_BOOL_H_

