/* File: bool.h
 * Description: defines the bool (boolean) data type and its two
 *              values (TRUE and FALSE).
 * Cristina Cifuentes
 * 3 August 1997
*/

#ifndef __BOOL_H__
#define __BOOL_H__


#define FALSE	0
#define TRUE	!FALSE

typedef int bool;


#endif

