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

19 lines
240 B
ObjectPascal

{ %target=linux }
{$mode objfpc}
{$linklib libtw3964a}
function testfunc : longint;public name 'testfunc';
begin
result:=1234;
end;
function f : longint;external name 'f';
exports
testfunc name 'testfunc';
begin
writeln(f);
end.