mirror of
https://git.suckless.org/9base
synced 2025-08-18 22:13:48 -07: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);
|
|
}
|
|
|