bug0263.pp 215 B

12345678910111213141516
  1. library bug0263;
  2. {
  3. The export directive is not necessary anymore in delphi, it's a leftover
  4. from the 16bit model, just like near and far.
  5. }
  6. procedure p1;export;
  7. begin
  8. end;
  9. exports
  10. p1 name 'p1';
  11. begin
  12. end.