brintos

brintos / llvm-project-archived public Read only

0
0
Text · 671 B · 79d8b51 Raw
28 lines · cpp
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9// test <stdbool.h>10 11#include <stdbool.h>12 13#ifndef __bool_true_false_are_defined14#error __bool_true_false_are_defined not defined15#endif16 17#ifdef bool18#error bool should not be defined19#endif20 21#ifdef true22#error true should not be defined23#endif24 25#ifdef false26#error false should not be defined27#endif28