fpc/tests/webtbs/tw3964a.pp

19 lines
240 B
ObjectPascal

{ %norun }
{ %needlibrary }
{ %target=linux }
{$mode objfpc}
library tw3964a;
function testfunc : longint;external name 'testfunc';
function f : longint;public;
begin
result:=testfunc;
end;
exports
f;
begin
end.