Richard Smith | f467732 | 2015-10-08 20:41:26 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===--------------------------- setjmp.h ---------------------------------===// |
| 3 | // |
Chandler Carruth | d201210 | 2019-01-19 10:56:40 +0000 | [diff] [blame^] | 4 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 5 | // See https://llvm.org/LICENSE.txt for license information. |
| 6 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Richard Smith | f467732 | 2015-10-08 20:41:26 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef _LIBCPP_SETJMP_H |
| 11 | #define _LIBCPP_SETJMP_H |
| 12 | |
| 13 | /* |
| 14 | setjmp.h synopsis |
| 15 | |
| 16 | Macros: |
| 17 | |
| 18 | setjmp |
| 19 | |
| 20 | Types: |
| 21 | |
| 22 | jmp_buf |
| 23 | |
| 24 | void longjmp(jmp_buf env, int val); |
| 25 | |
| 26 | */ |
| 27 | |
| 28 | #include <__config> |
Richard Smith | f467732 | 2015-10-08 20:41:26 +0000 | [diff] [blame] | 29 | |
| 30 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
| 31 | #pragma GCC system_header |
| 32 | #endif |
| 33 | |
Richard Smith | 523b172 | 2015-10-09 00:26:50 +0000 | [diff] [blame] | 34 | #include_next <setjmp.h> |
| 35 | |
Eric Fiselier | a80af82 | 2015-11-06 06:30:12 +0000 | [diff] [blame] | 36 | #ifdef __cplusplus |
| 37 | |
Richard Smith | f467732 | 2015-10-08 20:41:26 +0000 | [diff] [blame] | 38 | #ifndef setjmp |
| 39 | #define setjmp(env) setjmp(env) |
| 40 | #endif |
| 41 | |
Eric Fiselier | a80af82 | 2015-11-06 06:30:12 +0000 | [diff] [blame] | 42 | #endif // __cplusplus |
| 43 | |
Richard Smith | f467732 | 2015-10-08 20:41:26 +0000 | [diff] [blame] | 44 | #endif // _LIBCPP_SETJMP_H |