blob: c92369807bd0ca1e1ba5d0a8eb7e9d37201c6acf [file] [log] [blame]
/*
* getpgrp.c
*/
#include <unistd.h>
pid_t getpgrp(void) {
return getpgid(0);
}