Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
unistd
/
getsid.c
blob: 93ba690e7ec22dde72bcd902924ae89dfb359306 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
getsid
(
pid_t
pid
)
{
return
syscall
(
SYS_getsid
,
pid
);
}