ex17.pp 178 B

123456789
  1. Program Example17;
  2. { Program to demonstrate the GetUid and GetEUid functions. }
  3. Uses BaseUnix;
  4. begin
  5. writeln ('User Id = ',fpgetuid,' Effective user Id = ',fpgeteuid);
  6. end.