Iros
 
Loading...
Searching...
No Matches
setjmp.h
Go to the documentation of this file.
1#pragma once
2
3#include <ccpp/bits/config.h>
4
5#include __CCPP_ARCH_PATH(jmpbuf.h)
6
8
9typedef struct __jmp_buf jmp_buf[1];
10
11int setjmp(jmp_buf __env);
12__CCPP_NORETURN void longjmp(jmp_buf __env, int __val);
13
#define __CCPP_NORETURN
Definition config.h:54
#define __CCPP_END_DECLARATIONS
Definition config.h:8
#define __CCPP_BEGIN_DECLARATIONS
Definition config.h:7
__CCPP_BEGIN_DECLARATIONS struct __jmp_buf jmp_buf[1]
Definition setjmp.h:9
__CCPP_NORETURN void longjmp(jmp_buf __env, int __val)
Definition longjmp.cpp:4
int setjmp(jmp_buf __env)
Definition setjmp.cpp:4
Definition jmpbuf.h:7