cosmopolitan/third_party/libcxx/cstdbool

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
722 B
Text
Raw Normal View History

2022-09-04 11:53:52 +00:00
// -*- C++ -*-
2024-05-27 09:12:27 +00:00
//===----------------------------------------------------------------------===//
2022-09-04 11:53:52 +00:00
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef _LIBCPP_CSTDBOOL
#define _LIBCPP_CSTDBOOL
/*
cstdbool synopsis
Macros:
__bool_true_false_are_defined
*/
2024-05-27 09:12:27 +00:00
#include <__config>
2022-09-04 11:53:52 +00:00
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
2024-05-27 09:12:27 +00:00
# pragma GCC system_header
2022-09-04 11:53:52 +00:00
#endif
#undef __bool_true_false_are_defined
#define __bool_true_false_are_defined 1
2024-05-27 09:12:27 +00:00
#endif // _LIBCPP_CSTDBOOL