blob: f1e1716f3fab7f10a18a2e834abeb94d00de7263 [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
int setpgid(pid_t pid, pid_t pgid) {
return syscall(SYS_setpgid, pid, pgid);
}