Sign in
mojo
/
mojo-testing
/
12b1499ab574fdcbdcc013fdb39d2d9beea8793e
/
.
/
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
);
}