fpc/docs/bunixex/ex17.pp
2004-10-22 21:57:33 +00:00

10 lines
178 B
ObjectPascal

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