fpc/tests/webtbs/tw3964b.pp
2016-08-14 14:09:24 +00:00

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.