added a setpgrp impl

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11574 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2005-03-04 13:56:49 +00:00
parent c4b73bfcd5
commit f95d0b421a

View File

@ -73,6 +73,13 @@ setpgid(pid_t process, pid_t group)
}
int
setpgrp(void)
{
return setpgid(0, 0);
}
pid_t
setsid(void)
{