mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-06 09:46:34 +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.
|