mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
21 lines
249 B
ObjectPascal
21 lines
249 B
ObjectPascal
{$mode delphi}
|
|
{$inline on}
|
|
|
|
unit ub0489;
|
|
|
|
interface
|
|
|
|
function test(b:integer;const x;c:integer):integer inline;
|
|
|
|
implementation
|
|
|
|
uses
|
|
ub0489b;
|
|
|
|
function test(b:integer;const x;c:integer):integer inline;
|
|
begin
|
|
result:=fpwrite(b,x,c);
|
|
end;
|
|
|
|
end.
|