mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
15 lines
153 B
ObjectPascal
15 lines
153 B
ObjectPascal
{ %TARGET=win32,wince }
|
|
{ %needlibrary }
|
|
{ %NORUN }
|
|
library test;
|
|
|
|
procedure exporttest;export;
|
|
|
|
begin
|
|
end;
|
|
|
|
exports exporttest;
|
|
|
|
begin
|
|
end.
|