mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-14 22:26:02 +02:00
11 lines
178 B
ObjectPascal
11 lines
178 B
ObjectPascal
Program Example27;
|
|
|
|
{ Program to demonstrate the Umask function. }
|
|
|
|
Uses BaseUnix;
|
|
|
|
begin
|
|
Writeln ('Old Umask was : ',fpUmask(&111));
|
|
WRiteln ('New Umask is : ',&111);
|
|
end.
|