Files
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

18 lines
285 B
C

#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)getpgrp.c 1.1 94/10/31 SMI";
#endif
/*
getpgrp -- system call emulation for 4.2BSD
last edit: 01-Jul-1983 D A Gwyn
*/
extern int _getpgrp();
int
getpgrp()
{
return _getpgrp( 0 ); /* 0 means this process */
}