#ifndef cathlibcpp_bool_H
#define cathlibcpp_bool_H

// File:       bool.h
// Author:     (c) Miles Sabin, 1996
// Purpose:    emulate bool type

// This file can be included from both C and C++


#ifndef cathlibcpp_config_H
#include "config.h"
#endif


#ifndef BUILTIN_BOOL
#if !defined(__cplusplus) && defined(PROBLEM_OSLIB_BOOL) && defined(USING_OSLIB)
#  ifndef types_H
#    include "types.h"
#  endif
#else
   typedef int bool;
#endif

#undef true
#define true 1

#undef false
#define false 0

#endif

#endif
