mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 06:29:32 +02:00
20 lines
237 B
ObjectPascal
20 lines
237 B
ObjectPascal
{ %needlibrary }
|
|
{ %target=linux,haiku }
|
|
{$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.
|