stdbool.h 264 B

1234567891011121314151617
  1. #ifndef _NT_STDBOOL_H_
  2. #define _NT_STDBOOL_H_
  3. /*
  4. * stdbool.h exists in GCC, but not in MSVC.
  5. */
  6. #ifdef __GNUC__
  7. # include_next <stdbool.h>
  8. #else
  9. # define _Bool signed char
  10. # define bool _Bool
  11. # define false 0
  12. # define true 1
  13. #endif
  14. #endif /* _NT_STDBOOL_H_ */