mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 17:59:25 +02:00
17 lines
215 B
ObjectPascal
17 lines
215 B
ObjectPascal
library bug0263;
|
|
|
|
{
|
|
The export directive is not necessary anymore in delphi, it's a leftover
|
|
from the 16bit model, just like near and far.
|
|
}
|
|
|
|
procedure p1;export;
|
|
begin
|
|
end;
|
|
|
|
exports
|
|
p1 name 'p1';
|
|
|
|
begin
|
|
end.
|