diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2023-02-11 12:38:04 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2023-02-11 12:38:11 +0000 | 
| commit | e3b557809604d036af6e00c60f012c2025b59a5e (patch) | |
| tree | 8a11ba2269a3b669601e2fd41145b174008f4da8 /libcxx/include/setjmp.h | |
| parent | 08e8dd7b9db7bb4a9de26d44c1cbfd24e869c014 (diff) | |
Diffstat (limited to 'libcxx/include/setjmp.h')
| -rw-r--r-- | libcxx/include/setjmp.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/libcxx/include/setjmp.h b/libcxx/include/setjmp.h index de4f9edf4886..f4a2bbcb0bd3 100644 --- a/libcxx/include/setjmp.h +++ b/libcxx/include/setjmp.h @@ -31,7 +31,9 @@ void longjmp(jmp_buf env, int val);  #  pragma GCC system_header  #endif -#include_next <setjmp.h> +#if __has_include_next(<setjmp.h>) +#  include_next <setjmp.h> +#endif  #ifdef __cplusplus | 
