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

10 lines
174 B
ObjectPascal

Program Example17;
{ Program to demonstrate the GetUid and GetEUid functions. }
Uses oldlinux;
begin
writeln ('User Id = ',getuid,' Effective user Id = ',geteuid);
end.