php_stdbool.h 276 B

1234567891011
  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 */