summaryrefslogtreecommitdiff
path: root/lib/libc/setjmp/siglongjmp.c
blob: 4f39cc3745ef3108a3544aa67fd193d4a74dd331 (plain)
1
2
3
4
5
6
#include <setjmp.h>

_Noreturn void siglongjmp(sigjmp_buf env, int val)
{
	longjmp(env, val);
}