mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-24 03:36:21 +01:00
27 lines
335 B
ObjectPascal
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}
|