summaryrefslogtreecommitdiff
path: root/fpcdocs/olinuxex/ex27.pp
blob: 1ce7b0faff74e0e5526e9cbc8c3c6c0a4308076b (plain)
1
2
3
4
5
6
7
8
9
10
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.