mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-14 20:28:37 +02:00
20 lines
231 B
ObjectPascal
20 lines
231 B
ObjectPascal
{ %needlibrary }
|
|
{ %target=linux }
|
|
{$mode objfpc}
|
|
|
|
{$linklib tw3964a}
|
|
|
|
function testfunc : longint;
|
|
begin
|
|
result:=1234;
|
|
end;
|
|
|
|
function f : longint;external name 'f';
|
|
|
|
exports
|
|
testfunc name 'testfunc';
|
|
|
|
begin
|
|
writeln(f);
|
|
end.
|