loongarch64: add new syscall numbers
[musl.git] / src / unistd / getsid.c
blob93ba690e7ec22dde72bcd902924ae89dfb359306
1 #include <unistd.h>
2 #include "syscall.h"
4 pid_t getsid(pid_t pid)
6 return syscall(SYS_getsid, pid);