Function GetEUid : Longint;
Get the effective user ID of the currently running process.
None.
GetEUid, geteuid (2)
Program Example17; { Program to demonstrate the GetUid and GetEUid functions. } Uses linux; begin writeln ('User Id = ',getuid,' Effective user Id = ',geteuid); end.