chiark / gitweb /
[PATCH] Update to version 117 of klibc (from version 108)
[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 }