summaryrefslogtreecommitdiff
path: root/fpcdocs/olinuxex/ex18.pp
blob: 8fbc694782c3899f20aaea7c40701553c6175f87 (plain)
1
2
3
4
5
6
7
8
9
Program Example18;

{ Program to demonstrate the GetGid and GetEGid functions. }

Uses oldlinux;

begin
 writeln ('Group Id = ',getgid,' Effective group Id = ',getegid);
end.