mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:28:15 +02:00
15 lines
170 B
ObjectPascal
15 lines
170 B
ObjectPascal
{$mode delphi}
|
|
unit tb0444;
|
|
interface
|
|
|
|
function Trunc(const x : Single) : Integer;
|
|
|
|
implementation
|
|
|
|
function Trunc(const x : Single) : Integer;
|
|
register;
|
|
asm
|
|
end;
|
|
|
|
end.
|