// // NAME // bool.h // // DESCRIPTION // This file defines the bool data type for versions of Borland C++ // less than 5.0. // #ifndef _bool_h_ #define _bool_h_ #if (__BORLANDC__ < 0x500) enum bool { false = 0, true = 1 }; #endif #endif