stdbool.h 398 B

1234567891011121314151617181920
  1. /* stdbool.h */
  2. /*
  3. * Copyright (c) 2014 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STDBOOL_H_
  8. #define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STDBOOL_H_
  9. #ifndef __cplusplus
  10. #define bool _Bool
  11. #define true 1
  12. #define false 0
  13. #endif
  14. #define __bool_true_false_are_defined 1
  15. #endif /* ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STDBOOL_H_ */