Restore the environment in which a function call was made
[Classification]
Standard library
[Syntax]
#include <setjmp.h>
typedef int __near jmp_buf[3];
void __far longjmp(jmp_buf env, int val);
[Description]
This function performs a non-local jump to the place immediately after setjmp using env saved by setjmp.