xref: /freebsd/contrib/llvm-project/libcxx/include/__thread/support/external.h (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
1*0fca6ea1SDimitry Andric // -*- C++ -*-
2*0fca6ea1SDimitry Andric //===----------------------------------------------------------------------===//
3*0fca6ea1SDimitry Andric //
4*0fca6ea1SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5*0fca6ea1SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
6*0fca6ea1SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7*0fca6ea1SDimitry Andric //
8*0fca6ea1SDimitry Andric //===----------------------------------------------------------------------===//
9*0fca6ea1SDimitry Andric 
10*0fca6ea1SDimitry Andric #ifndef _LIBCPP___THREAD_SUPPORT_EXTERNAL_H
11*0fca6ea1SDimitry Andric #define _LIBCPP___THREAD_SUPPORT_EXTERNAL_H
12*0fca6ea1SDimitry Andric 
13*0fca6ea1SDimitry Andric #include <__config>
14*0fca6ea1SDimitry Andric 
15*0fca6ea1SDimitry Andric #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER
16*0fca6ea1SDimitry Andric #  pragma GCC system_header
17*0fca6ea1SDimitry Andric #endif
18*0fca6ea1SDimitry Andric 
19*0fca6ea1SDimitry Andric #include <__external_threading>
20*0fca6ea1SDimitry Andric 
21*0fca6ea1SDimitry Andric #endif // _LIBCPP___THREAD_SUPPORT_EXTERNAL_H
22