Files
Arquivotheca.SunOS-4.1.3/lib/libc/sys/sys5/getpgrp.c
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

18 lines
285 B
C

#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)getpgrp.c 1.1 92/07/30 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 */
}