#include #include "syscall.h" pid_t setpgid(pid_t pid, pid_t pgid) { return syscall2(__NR_setpgid, pid, pgid); }