Elliott Hughes | 13da600 | 2025-02-03 10:42:13 -0800 | [diff] [blame] | 1 | // Copyright (C) 2017 The Android Open Source Project |
| 2 | // SPDX-License-Identifier: BSD-2-Clause |
Elliott Hughes | 21b56eb | 2017-10-20 17:57:17 -0700 | [diff] [blame] | 3 | |
| 4 | #include <stdbool.h> |
| 5 | |
| 6 | #include "header_checks.h" |
| 7 | |
| 8 | static void stdbool_h() { |
Elliott Hughes | 986afb9 | 2024-11-22 13:40:23 +0000 | [diff] [blame] | 9 | TYPE(bool); |
| 10 | bool t = true; |
| 11 | bool f = false; |
Elliott Hughes | 21b56eb | 2017-10-20 17:57:17 -0700 | [diff] [blame] | 12 | MACRO_VALUE(__bool_true_false_are_defined, 1); |
| 13 | } |