Sign in
cobalt
/
cobalt
/
286dd7840608e9cf78bc4a603ff2ec2ee39750c5
/
.
/
src
/
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
);
}