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

7 lines
68 B
C

#include <unistd.h>
pid_t setpgrp(void)
{
return setpgid(0, 0);
}