musl-tcc/src/unistd/setpgid.c

8 lines
122 B
C

#include <unistd.h>
#include "syscall.h"
int setpgid(pid_t pid, pid_t pgid)
{
return syscall(SYS_setpgid, pid, pgid);
}