summaryrefslogtreecommitdiff
path: root/include/setjmp.h
blob: feea9cc189e97b690625e8c41ffb3a5b2899fce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __SETJMP_H
#define __SETJMP_H

#include <bits/setjmp.h>

typedef jmp_buf sigjmp_buf;

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

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

#endif