mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 09:19:39 +02:00
10 lines
172 B
ObjectPascal
10 lines
172 B
ObjectPascal
Program Example18;
|
|
|
|
{ Program to demonstrate the GetGid and GetEGid functions. }
|
|
|
|
Uses linux;
|
|
|
|
begin
|
|
writeln ('Group Id = ',getgid,' Effective group Id = ',getegid);
|
|
end.
|