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

10 lines
171 B
ObjectPascal

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