mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 20:33:49 +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.
|