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