chiark / gitweb /
volume_id: provide libvolume_id.a file
[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 }