1 2 3 4 5 6
#include <setjmp.h> _Noreturn void siglongjmp(sigjmp_buf env, int val) { longjmp(env, val); }