mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 08:10:31 +02:00
10 lines
171 B
ObjectPascal
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.
|