summaryrefslogtreecommitdiff
path: root/libcxx/include/csetjmp
blob: 4c64e8327e3f0ceee7edd3b28b2550dd98c714f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// 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_CSETJMP
#define _LIBCPP_CSETJMP

/*
    csetjmp synopsis

Macros:

    setjmp

namespace std
{

Types:

    jmp_buf

void longjmp(jmp_buf env, int val);

}  // std

*/

#include <__assert> // all public C++ headers provide the assertion handler
#include <__config>

#include <setjmp.h>

#ifndef _LIBCPP_SETJMP_H
#   error <csetjmp> tried including <setjmp.h> but didn't find libc++'s <setjmp.h> header. \
          This usually means that your header search paths are not configured properly. \
          The header search paths should contain the C++ Standard Library headers before \
          any C Standard Library, and you are probably using compiler flags that make that \
          not be the case.
#endif

#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#  pragma GCC system_header
#endif

_LIBCPP_BEGIN_NAMESPACE_STD

using ::jmp_buf _LIBCPP_USING_IF_EXISTS;
using ::longjmp _LIBCPP_USING_IF_EXISTS;

_LIBCPP_END_NAMESPACE_STD

#endif // _LIBCPP_CSETJMP