summaryrefslogtreecommitdiffstats
path: root/lib/libcxx/include/csetjmp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libcxx/include/csetjmp')
-rw-r--r--lib/libcxx/include/csetjmp48
1 files changed, 48 insertions, 0 deletions
diff --git a/lib/libcxx/include/csetjmp b/lib/libcxx/include/csetjmp
new file mode 100644
index 00000000000..58a9c73ab56
--- /dev/null
+++ b/lib/libcxx/include/csetjmp
@@ -0,0 +1,48 @@
+// -*- C++ -*-
+//===--------------------------- csetjmp ----------------------------------===//
+//
+// 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_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>
+
+#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
+#pragma GCC system_header
+#endif
+
+_LIBCPP_BEGIN_NAMESPACE_STD
+
+using ::jmp_buf;
+using ::longjmp;
+
+_LIBCPP_END_NAMESPACE_STD
+
+#endif // _LIBCPP_CSETJMP