mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
16 lines
215 B
ObjectPascal
16 lines
215 B
ObjectPascal
{ $OPT=-Twin32 }
|
|
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 p;
|
|
begin
|
|
end;
|
|
|
|
exports
|
|
p name 'p';
|
|
end.
|