mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 23:49:28 +02:00
10 lines
178 B
ObjectPascal
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.
|