Sign in
cobalt
/
cobalt
/
97b64f26fb12c9eab352139c26f0b01d1cb6d0b9
/
.
/
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
);
}