mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 09:29:25 +02:00
18 lines
251 B
ObjectPascal
18 lines
251 B
ObjectPascal
{ %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos,aix,android,haiku }
|
|
{ %needlibrary }
|
|
{$mode objfpc}
|
|
library tw36544a;
|
|
|
|
uses
|
|
uw36544;
|
|
|
|
procedure library_procedure;
|
|
begin
|
|
writeln('Not ok');
|
|
end;
|
|
|
|
exports library_procedure;
|
|
|
|
begin
|
|
end.
|