mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 23:19:24 +02:00
* fixed ceil function
This commit is contained in:
parent
b7dbca4816
commit
efb2475890
@ -430,7 +430,9 @@ function ceil(x : float) : longint;
|
||||
|
||||
begin
|
||||
Ceil:=Trunc(x);
|
||||
If Frac(x)>0 then Ceil:=Ceil+1;
|
||||
If Frac(x)>0 then
|
||||
if x > 0 then Ceil:=Ceil+1
|
||||
else Ceil := Ceil - 1;
|
||||
end;
|
||||
|
||||
function floor(x : float) : longint;
|
||||
@ -663,7 +665,10 @@ end;
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.9 1999-06-03 13:37:30 jonas
|
||||
Revision 1.10 1999-06-03 16:22:57 jonas
|
||||
* fixed ceil function
|
||||
|
||||
Revision 1.9 1999/06/03 13:37:30 jonas
|
||||
* fixed floor function
|
||||
|
||||
Revision 1.8 1999/01/15 11:44:56 peter
|
||||
|
Loading…
Reference in New Issue
Block a user