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