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