mirror of
https://github.com/darlinghq/darling-libcxx.git
synced 2024-11-24 12:29:57 +00:00
f5256e16df
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103516 91177308-0d34-0410-b5e6-96231b3b80d8
51 lines
783 B
C++
51 lines
783 B
C++
// -*- C++ -*-
|
|
//===--------------------------- csetjmp ----------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP_CSETJMP
|
|
#define _LIBCPP_CSETJMP
|
|
|
|
/*
|
|
csetjmp synopsis
|
|
|
|
Macros:
|
|
|
|
setjmp
|
|
|
|
namespace std
|
|
{
|
|
|
|
Types:
|
|
|
|
jmp_buf
|
|
|
|
void longjmp(jmp_buf env, int val);
|
|
|
|
} // std
|
|
|
|
*/
|
|
|
|
#include <__config>
|
|
#include <setjmp.h>
|
|
|
|
#pragma GCC system_header
|
|
|
|
#ifndef setjmp
|
|
#define setjmp(env) setjmp(env)
|
|
#endif
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
using ::jmp_buf;
|
|
using ::longjmp;
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
#endif // _LIBCPP_CSETJMP
|