fpc/tests/tbs/tb0225.pp
oro06 feb8de2d67 *arm-wince wince added to win32 tests
git-svn-id: trunk@2615 -
2006-02-17 07:38:55 +00:00

22 lines
352 B
ObjectPascal

{ %TARGET=win32,linux,wince }
{ %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.