mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-17 21:02:38 +02:00
10 lines
179 B
ObjectPascal
10 lines
179 B
ObjectPascal
Program Example18;
|
|
|
|
{ Program to demonstrate the GetGid and GetEGid functions. }
|
|
|
|
Uses BaseUnix;
|
|
|
|
begin
|
|
writeln ('Group Id = ',fpgetgid,' Effective group Id = ',fpgetegid);
|
|
end.
|