8 lines
126 B
C
8 lines
126 B
C
|
#include <unistd.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
pid_t setpgid(pid_t pid, pid_t pgid)
|
||
|
{
|
||
|
return syscall2(__NR_setpgid, pid, pgid);
|
||
|
}
|