php_stdbool.h 392 B

1234567891011121314151617181920
  1. #ifndef _STDBOOL_H
  2. #define _STDBOOL_H
  3. #if !defined(__BOOL_DEFINED)
  4. # define bool short
  5. /* The other macros must be usable in preprocessor directives. */
  6. # define false 0
  7. # define true 1
  8. # define __bool_true_false_are_defined 1
  9. # endif
  10. #endif /* _STDBOOL_H */
  11. /*
  12. * Local variables:
  13. * tab-width: 4
  14. * c-basic-offset: 4
  15. * End:
  16. * vim600: sw=4 ts=4 fdm=marker
  17. * vim<600: sw=4 ts=4
  18. */