fpc/tests/tbs/tbs0263.pp
1999-12-08 01:00:16 +00:00

27 lines
335 B
ObjectPascal

{$ifdef linux}
{$define doit}
{$endif}
{$ifdef win32}
{$define doit}
{$endif}
{$ifdef doit}
library tbs0263;
{
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.
{$else}
begin
end.
{$endif}