2
0

bool.h 233 B

123456789101112131415161718
  1. #ifndef AL_BOOL_H
  2. #define AL_BOOL_H
  3. #ifdef HAVE_STDBOOL_H
  4. #include <stdbool.h>
  5. #endif
  6. #ifndef bool
  7. #ifdef HAVE_C99_BOOL
  8. #define bool _Bool
  9. #else
  10. #define bool int
  11. #endif
  12. #define false 0
  13. #define true 1
  14. #endif
  15. #endif /* AL_BOOL_H */