stdbool.h 802 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // -*- C++ -*-
  2. //===--------------------------- stdbool.h --------------------------------===//
  3. //
  4. // The LLVM Compiler Infrastructure
  5. //
  6. // This file is dual licensed under the MIT and the University of Illinois Open
  7. // Source Licenses. See LICENSE.TXT for details.
  8. //
  9. //===----------------------------------------------------------------------===//
  10. #ifndef _LIBCPP_STDBOOL_H
  11. #define _LIBCPP_STDBOOL_H
  12. /*
  13. stdbool.h synopsis
  14. Macros:
  15. __bool_true_false_are_defined
  16. */
  17. #include <__config>
  18. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  19. #pragma GCC system_header
  20. #endif
  21. #include_next <stdbool.h>
  22. #ifdef __cplusplus
  23. #undef bool
  24. #undef true
  25. #undef false
  26. #undef __bool_true_false_are_defined
  27. #define __bool_true_false_are_defined 1
  28. #endif
  29. #endif // _LIBCPP_STDBOOL_H