mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
18 lines
224 B
C
18 lines
224 B
C
|
#include <u.h>
|
||
|
#define NOPLAN9DEFINES
|
||
|
#include <libc.h>
|
||
|
|
||
|
void
|
||
|
p9longjmp(p9jmp_buf buf, int val)
|
||
|
{
|
||
|
siglongjmp((void*)buf, val);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
p9notejmp(void *x, p9jmp_buf buf, int val)
|
||
|
{
|
||
|
USED(x);
|
||
|
siglongjmp((void*)buf, val);
|
||
|
}
|
||
|
|