c-mods.h 129 B

1234567891011
  1. #ifndef TRUE
  2. #define TRUE (0 == 0)
  3. #endif
  4. #ifndef FALSE
  5. #define FALSE (0 == 1)
  6. #endif
  7. #define bool char /* boolean type */