Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/waterbox/libc/includes/setjmp.h
2 views
1
#ifndef _SETJMP_H
2
#define _SETJMP_H
3
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
8
#define _JBTYPE long long
9
#define _JBLEN 8
10
typedef _JBTYPE jmp_buf[_JBLEN];
11
12
int setjmp (jmp_buf env);
13
void longjmp (jmp_buf env, int val);
14
15
#ifdef __cplusplus
16
}
17
#endif
18
19
#endif
20
21