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