blob: bd81b08a2e6edcea09da85833f17b34d1cdca397 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "asm/unistd_64.h" // for __NR_setsid
#include <syscall.h> // for __syscall_0, syscall
#include <unistd.h> // for pid_t, setsid
pid_t setsid(void)
{
return syscall(setsid);
}
|