blob: 3467da4ad534a8335215706a18049e320fdbd76a [file] [log] [blame]
Elliott Hughes13da6002025-02-03 10:42:13 -08001// Copyright (C) 2017 The Android Open Source Project
2// SPDX-License-Identifier: BSD-2-Clause
Elliott Hughes21b56eb2017-10-20 17:57:17 -07003
4#include <stdbool.h>
5
6#include "header_checks.h"
7
8static void stdbool_h() {
Elliott Hughes986afb92024-11-22 13:40:23 +00009 TYPE(bool);
10 bool t = true;
11 bool f = false;
Elliott Hughes21b56eb2017-10-20 17:57:17 -070012 MACRO_VALUE(__bool_true_false_are_defined, 1);
13}