blob: 93ba690e7ec22dde72bcd902924ae89dfb359306 [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
pid_t getsid(pid_t pid)
{
return syscall(SYS_getsid, pid);
}