fpc/docs/olinuxex/ex18.pp
2004-10-16 13:14:03 +00:00

10 lines
175 B
ObjectPascal

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