Sign in
plan9port
/
plan9
/
c0ae8e760cd5eb3f8b1dc020df4aa91b3aac64dc
/
.
/
src
/
lib9
/
jmp.c
blob: 6f928bab3caf720b041be0cf47a1874af7df2bdf [
file
] [
log
] [
blame
]
#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
);
}