mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 02:08:18 +02:00
18 lines
204 B
ObjectPascal
18 lines
204 B
ObjectPascal
{ %target=win32,win64 }
|
|
{ %skiptarget=$nosharedlib }
|
|
{ %needlibrary }
|
|
{ %norun }
|
|
{ %neededafter }
|
|
|
|
library tlib1a2;
|
|
|
|
procedure p(var a : dword);
|
|
begin
|
|
a:=2;
|
|
end;
|
|
|
|
exports p;
|
|
|
|
begin
|
|
end.
|