fpc/docs/linuxex/ex18.pp
1998-03-25 11:26:49 +00:00

10 lines
172 B
ObjectPascal

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