Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
signal
/
sigpending.c
blob: 3d193df83c680031412ebbf4465883725b8999d7 [
file
] [
log
] [
blame
]
#include
<signal.h>
#include
"syscall.h"
int
sigpending
(
sigset_t
*
set
)
{
return
syscall
(
SYS_rt_sigpending
,
set
,
_NSIG
/
8
);
}