fpc/docs/olinuxex/ex27.pp
2004-10-16 13:14:03 +00:00

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.