blob: 75bbcc7f7fcb50942b3d8d8b4860a531fe426065 [file] [log] [blame]
/*
* setpgrp.c
*/
#include <unistd.h>
int setpgrp(void)
{
return setpgid(0, 0);
}