fpc/tests/webtbs/tw3964b.pp
Jonas Maebe 9aac8a7852 * fixed test
git-svn-id: trunk@10494 -
2008-03-15 23:20:11 +00:00

20 lines
231 B
ObjectPascal

{ %needlibrary }
{ %target=linux }
{$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.