fpc/tests/tbs/tb0444.pp
2005-02-14 17:13:06 +00:00

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.