forked from OSchip/llvm-project
parent
524956bb3d
commit
38a2a28ff7
|
@ -38,10 +38,6 @@ void longjmp(jmp_buf env, int val);
|
|||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifndef setjmp
|
||||
#define setjmp(env) setjmp(env)
|
||||
#endif
|
||||
|
||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||
|
||||
using ::jmp_buf;
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
// -*- C++ -*-
|
||||
//===--------------------------- setjmp.h ---------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef _LIBCPP_SETJMP_H
|
||||
#define _LIBCPP_SETJMP_H
|
||||
|
||||
/*
|
||||
setjmp.h synopsis
|
||||
|
||||
Macros:
|
||||
|
||||
setjmp
|
||||
|
||||
Types:
|
||||
|
||||
jmp_buf
|
||||
|
||||
void longjmp(jmp_buf env, int val);
|
||||
|
||||
*/
|
||||
|
||||
#include <__config>
|
||||
#include_next <setjmp.h>
|
||||
|
||||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifndef setjmp
|
||||
#define setjmp(env) setjmp(env)
|
||||
#endif
|
||||
|
||||
#endif // _LIBCPP_SETJMP_H
|
|
@ -12,6 +12,10 @@
|
|||
#include <setjmp.h>
|
||||
#include <type_traits>
|
||||
|
||||
#ifndef setjmp
|
||||
#error setjmp not defined
|
||||
#endif
|
||||
|
||||
int main()
|
||||
{
|
||||
jmp_buf jb;
|
||||
|
|
Loading…
Reference in New Issue