fpc/docs/bunixex/ex18.pp
2004-10-22 21:57:33 +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.