mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-10 03:41:39 +01:00
19 lines
240 B
ObjectPascal
19 lines
240 B
ObjectPascal
{ %target=linux }
|
|
{$mode objfpc}
|
|
|
|
{$linklib libtw3964a}
|
|
|
|
function testfunc : longint;public name 'testfunc';
|
|
begin
|
|
result:=1234;
|
|
end;
|
|
|
|
function f : longint;external name 'f';
|
|
|
|
exports
|
|
testfunc name 'testfunc';
|
|
|
|
begin
|
|
writeln(f);
|
|
end.
|