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