mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 16:59:45 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			188 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			188 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example27;
 | 
						|
 | 
						|
{ Program to demonstrate the Umask function. }
 | 
						|
 | 
						|
Uses oldlinux;
 | 
						|
 | 
						|
begin
 | 
						|
  Writeln ('Old Umask was : ',Umask(Octal(111)));
 | 
						|
  WRiteln ('New Umask is  : ',Octal(111));
 | 
						|
end.
 |