mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:08:18 +02:00
19 lines
246 B
ObjectPascal
19 lines
246 B
ObjectPascal
{ %norun }
|
|
{ %needlibrary }
|
|
{ %target=linux,haiku }
|
|
{$mode objfpc}
|
|
library tw3964a;
|
|
|
|
function testfunc : longint;external name 'testfunc';
|
|
|
|
function f : longint;public;
|
|
begin
|
|
result:=testfunc;
|
|
end;
|
|
|
|
exports
|
|
f;
|
|
|
|
begin
|
|
end.
|