musl-tcc/src/unistd/setpgrp.c

7 lines
68 B
C

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