146035553Spatrick// -*- C++ -*- 2*4bdff4beSrobert//===----------------------------------------------------------------------===// 346035553Spatrick// 446035553Spatrick// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 546035553Spatrick// See https://llvm.org/LICENSE.txt for license information. 646035553Spatrick// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 746035553Spatrick// 846035553Spatrick//===----------------------------------------------------------------------===// 946035553Spatrick 1046035553Spatrick#ifndef _LIBCPP_CSTDBOOL 1146035553Spatrick#define _LIBCPP_CSTDBOOL 1246035553Spatrick 1346035553Spatrick/* 1446035553Spatrick cstdbool synopsis 1546035553Spatrick 1646035553SpatrickMacros: 1746035553Spatrick 1846035553Spatrick __bool_true_false_are_defined 1946035553Spatrick 2046035553Spatrick*/ 2146035553Spatrick 22*4bdff4beSrobert#include <__assert> // all public C++ headers provide the assertion handler 2346035553Spatrick#include <__config> 2446035553Spatrick 2546035553Spatrick#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) 2646035553Spatrick# pragma GCC system_header 2746035553Spatrick#endif 2846035553Spatrick 2946035553Spatrick#undef __bool_true_false_are_defined 3046035553Spatrick#define __bool_true_false_are_defined 1 3146035553Spatrick 3246035553Spatrick#endif // _LIBCPP_CSTDBOOL 33