toaruos/libc/unistd/getpgrp.c
2021-09-18 13:55:13 +09:00

6 lines
59 B
C

#include <unistd.h>
int getpgrp() {
return getpgid(0);
}