ref: 4afb56f570b3d6943e39bda5c9a2992a3bd139d2
dir: /sys/src/libc/alpha/notejmp.c/
#include <u.h>
#include <libc.h>
#include <ureg.h>
void
notejmp(void *vr, jmp_buf j, int ret)
{
struct Ureg *r = vr;
r->r0 = ret;
if(ret == 0)
r->r0 = 1;
r->pc = j[JMPBUFPC];
r->sp = j[JMPBUFSP];
noted(NCONT);
}