fix-bool.diff 428 B

12345678910111213141516
  1. diff --git a/H/bool.h b/H/bool.h
  2. index fbf55c8..ddb7396 100644
  3. --- a/H/bool.h
  4. +++ b/H/bool.h
  5. @@ -30,10 +30,7 @@
  6. ****************************************************************************/
  7. -#if !defined( BOOL_DEFINED ) && !defined( bool ) && !(__WATCOMC__ >= 1070 && defined(__cplusplus))
  8. - #define BOOL_DEFINED
  9. - typedef unsigned char bool;
  10. -#endif
  11. +#include <stdbool.h>
  12. #ifndef TRUE
  13. #define TRUE 1
  14. #endif