a2a37f65f3b7ec1c0aff38da28949b1972ec80a5
[musl] / setpgrp.c
1 #include <unistd.h>
2
3 pid_t setpgrp(void)
4 {
5         return setpgid(0, 0);
6 }