summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/setpgrp.c
blob: 966bb4da641608dc1c2907fe3dd33c98dd1ad5d2 (plain)
1
2
3
4
5
6
7
8
9
#define setpgid __setpgid

#include <syscall.h>
#include <unistd.h>

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