mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 01:51:49 +01: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.
 | 
