fpc/bugs/bug0263.pp
1999-10-26 12:31:03 +00:00

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.