#ifndef BOOL_H #define BOOL_H typedef int Boolean; const Boolean TRUE=1; const Boolean FALSE=0; #endif