mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-07 06:10:59 +01: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.
|