summaryrefslogtreecommitdiffstats
path: root/usr/klibc/setpgrp.c
blob: 75bbcc7f7fcb50942b3d8d8b4860a531fe426065 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * setpgrp.c
 */

#include <unistd.h>

int setpgrp(void)
{
	return setpgid(0, 0);
}