fpc/tests/webtbs/tw3964a.pp
2005-10-18 12:30:44 +00:00

18 lines
223 B
ObjectPascal

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