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