repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove wrap_write helper from vdprintf
[musl.git]
/
src
/
signal
/
siglongjmp.c
blob
bc317acce93176a939f6de518cbe67d81284bdfd
1
#include <setjmp.h>
2
#include <signal.h>
3
#include
"syscall.h"
4
#include
"pthread_impl.h"
5
6
_Noreturn
void
siglongjmp
(
sigjmp_buf buf
,
int
ret
)
7
{
8
longjmp
(
buf
,
ret
);
9
}