Sign in
mojo
/
mojo-tools
/
f9aa301b07a9e92c1ab4eb23bbbc85b87501de02
/
.
/
fusl
/
src
/
unistd
/
getsid.c
blob: a80f8d7ba68e8e241f6e327ef90aaf7ab8d906d8 [
file
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
getsid
(
pid_t
pid
)
{
return
syscall
(
SYS_getsid
,
pid
);
}