fpc/docs/linuxex/ex18.pp
2004-07-17 22:10:48 +00:00

10 lines
179 B
ObjectPascal

Program Example18;
{ Program to demonstrate the GetGid and GetEGid functions. }
Uses BaseUnix;
begin
writeln ('Group Id = ',fpgetgid,' Effective group Id = ',fpgetegid);
end.