Minix2.0/src/lib/posix/_sigsetjmp.c

Compare this file to the similar file:
Show the results in this format:

#include <lib.h>
#include <sys/sigcontext.h>
#include <setjmp.h>

PUBLIC void siglongjmp(env, val)
sigjmp_buf env;
int val;
{
  if (env[0].__flags & SC_SIGCONTEXT)
	longjmp(env, val);
  else
	_longjmp(env, val);
}