fpc/tests/tbs/tb0225.pp
peter 06c7671945 * changed $ifdefs to %target
* removed obsolete dpmiexcp unit for go32v2
2002-12-24 22:31:26 +00:00

22 lines
346 B
ObjectPascal

{ %TARGET=win32,linux }
{ %NORUN }
{ Old file: tbs0263.pp }
{ export directive is not necessary in delphi anymore OK 0.99.13 (PFV) }
library tb0225;
{
The export directive is not necessary anymore in delphi, it's a leftover
from the 16bit model, just like near and far.
}
procedure testp;
begin
end;
exports
testp name 'testp';
end.