musl-tcc/src/unistd/setpgid.c
2022-03-20 16:48:53 +08:00

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);
}