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

{ Program to demonstrate the GetUid and GetEUid functions. }

Uses oldlinux;

begin
  writeln ('User Id = ',getuid,' Effective user Id = ',geteuid);
end.