setpgrp.c 86 B

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