mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:10:59 +02:00
12 lines
259 B
ObjectPascal
12 lines
259 B
ObjectPascal
Program Example52;
|
|
|
|
{ Program to demonstrate the GetFS function. }
|
|
|
|
Uses linux;
|
|
|
|
begin
|
|
Writeln ('File descriptor of input ',getfs(input));
|
|
Writeln ('File descriptor of output ',getfs(output));
|
|
Writeln ('File descriptor of stderr ',getfs(stderr));
|
|
end.
|