tw3964b.pp 237 B

12345678910111213141516171819
  1. { %needlibrary }
  2. { %target=linux,haiku }
  3. {$mode objfpc}
  4. {$linklib tw3964a}
  5. function testfunc : longint;
  6. begin
  7. result:=1234;
  8. end;
  9. function f : longint;external name 'f';
  10. exports
  11. testfunc name 'testfunc';
  12. begin
  13. writeln(f);
  14. end.