/*
	JRJ 3/1/92
	
	boolean.h


	Define (non standard) "boolean" type.
*/

typedef char boolean;

#define true	(1)
#define false	(0)
