Function GetEGid : Longint;
Get the effective group ID of the currently running process.
None.
GetGid, getegid (2)
Program Example18; { Program to demonstrate the GetGid and GetEGid functions. } Uses linux; begin writeln ('Group Id = ',getgid,' Effective group Id = ',getegid); end.