Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 971 Bytes

File metadata and controls

41 lines (29 loc) · 971 Bytes
description Learn more about: <csetjmp>
title <csetjmp>
ms.date 11/04/2016
f1_keywords
<csetjmp>
helpviewer_keywords
csetjmp header
ms.assetid 8f21fddd-5e9b-4219-a848-581cdd3569d9

<csetjmp>

Includes the Standard C library header <setjmp.h> and adds the associated names to the std namespace.

Syntax

#include <csetjmp>

using jmp_buf = see below;

Functions

[[noreturn]] void longjmp(jmp_buf env, int val);

Macros

#define setjmp(env)

Remarks

Including this header ensures that the names declared using external linkage in the Standard C library header are declared in the std namespace.

See also

Header Files Reference
C++ Standard Library Overview
Thread Safety in the C++ Standard Library