chiark / gitweb /
[PATCH] klibc: version 1.0.3
[elogind.git] / klibc / klibc / setpgrp.c
1 /*
2  * setpgrp.c
3  */
4
5 #include <unistd.h>
6
7 int setpgrp(void)
8 {
9   return setpgid(0,0);
10 }