summaryrefslogtreecommitdiff
path: root/include/setjmp.h
blob: 6288c84680ec6fc1e9e9371680b55bae2b021dcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef	_SETJMP_H
#define	_SETJMP_H

#ifdef __cplusplus
extern "C" {
#endif

#include <bits/setjmp.h>
typedef unsigned long sigjmp_buf[(1024+sizeof(jmp_buf))/sizeof(long)];

#ifdef _GNU_SOURCE
#define jmp_buf sigjmp_buf
#endif

int setjmp (jmp_buf);
int _setjmp (jmp_buf);
int sigsetjmp (sigjmp_buf, int);

void longjmp (jmp_buf, int);
void _longjmp (jmp_buf, int);
void siglongjmp (sigjmp_buf, int);

#define setjmp setjmp
#define longjmp longjmp

#ifdef __cplusplus
}
#endif

#endif