mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-03-04 07:58:21 +00:00
Our makefile generator now accepts badly formatted include lines. It's now more hermetic with better error checking in the cosmo repo, and it can be configured to not be hermetic at all.
20 lines
653 B
C++
20 lines
653 B
C++
// -*- C++ -*-
|
|
// clang-format off
|
|
//===------------------------- execution ---------------------------------===//
|
|
//
|
|
// 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_EXECUTION
|
|
#define _LIBCPP_EXECUTION
|
|
|
|
#include "third_party/libcxx/__config"
|
|
|
|
#if defined(_LIBCPP_HAS_PARALLEL_ALGORITHMS) && _LIBCPP_STD_VER >= 17
|
|
//# include "third_party/libcxx/__pstl_execution"
|
|
#endif
|
|
|
|
#endif // _LIBCPP_EXECUTION
|