mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 21:59:27 +02:00
17 lines
174 B
ObjectPascal
17 lines
174 B
ObjectPascal
{ %target=win32,win64 }
|
|
{ %needlibrary }
|
|
{ %norun }
|
|
{ %neededafter }
|
|
|
|
library tlib3a;
|
|
|
|
procedure p(var a : dword);
|
|
begin
|
|
a:=1;
|
|
end;
|
|
|
|
exports p;
|
|
|
|
begin
|
|
end.
|