global cleanup to use the new syscall interface
[musl] / src / unistd / getsid.c
index 064229c..93ba690 100644 (file)
@@ -3,5 +3,5 @@
 
 pid_t getsid(pid_t pid)
 {
-       return syscall1(__NR_getsid, pid);
+       return syscall(SYS_getsid, pid);
 }