chiark / gitweb /
test: add "driver" and "bus" links to test sysfs tree
[elogind.git] / klibc / klibc / getpgrp.c
1 /*
2  * getpgrp.c
3  */
4
5 #include <unistd.h>
6
7 pid_t getpgrp(void) {
8   return getpgid(0);
9 }