#include #include "syscall.h" pid_t getpgrp(void) { return __syscall(SYS_getpgid, 0); } #ifdef TEST int main(void) { return 0; } #endif