musl-tcc/src/unistd/setpgrp.c

7 lines
68 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <unistd.h>
pid_t setpgrp(void)
{
return setpgid(0, 0);
}