1 2 3 4 5 6 7 8 9
#include <setjmp.h> int _setjmp(jmp_buf env) { return setjmp(env); } /* XOPEN(400) */