#ifndef _BOOL_H
#define _BOOL_H
/*                                                      
**      $VER: bool.h 1.0 (7.3.94)             
**                                                      
**      Boolean type and constants for the C and C++ programming languages.
**                                                      
**      (C) Copyright 1994 Rainer Koppler
*/

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

#endif /*_BOOL_H*/
