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