mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 17:59:06 +02:00
16 lines
209 B
ObjectPascal
16 lines
209 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 p;
|
|
begin
|
|
end;
|
|
|
|
exports
|
|
p name 'p';
|
|
|
|
end.
|