1 // Copyright (C) 2017 The Android Open Source Project 2 // SPDX-License-Identifier: BSD-2-Clause 3 4 #include <stdbool.h> 5 6 #include "header_checks.h" 7 stdbool_h()8static void stdbool_h() { 9 TYPE(bool); 10 bool t = true; 11 bool f = false; 12 MACRO_VALUE(__bool_true_false_are_defined, 1); 13 } 14