diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2001-10-13 13:57:32 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2001-10-13 13:57:32 +0000 |
| commit | aa842e6a1214ea141be0f824f91cdf5e4aff3ab0 (patch) | |
| tree | ba8ece89b98908fd78f633446060ef3816da6986 | |
| parent | ab323a7d45fa8bb4444f813c9e3f4d4916c14d7b (diff) | |
Notes
| -rw-r--r-- | lib/msun/man/ceil.3 | 6 | ||||
| -rw-r--r-- | lib/msun/man/floor.3 | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/msun/man/ceil.3 b/lib/msun/man/ceil.3 index 8b6fbb0d09bd..64ef996ad50f 100644 --- a/lib/msun/man/ceil.3 +++ b/lib/msun/man/ceil.3 @@ -38,7 +38,7 @@ .Sh NAME .Nm ceil , .Nm ceilf -.Nd round to smallest integral value >= x +.Nd smallest integral value greater than or equal to x .Sh LIBRARY .Lb libm .Sh SYNOPSIS @@ -53,9 +53,9 @@ The and the .Fn ceilf functions return the smallest integral value -(represented as a double precision number) greater than or equal to -.Fa x . +.Fa x , +expressed as a floating-point number. .Sh SEE ALSO .Xr abs 3 , .Xr fabs 3 , diff --git a/lib/msun/man/floor.3 b/lib/msun/man/floor.3 index c2bee4304b66..07c0f31dba13 100644 --- a/lib/msun/man/floor.3 +++ b/lib/msun/man/floor.3 @@ -38,7 +38,7 @@ .Sh NAME .Nm floor , .Nm floorf -.Nd round to largest integral value <= x +.Nd largest integral value less than or equal to x .Sh LIBRARY .Lb libm .Sh SYNOPSIS @@ -52,10 +52,10 @@ The .Fn floor and the .Fn floorf -function returns the largest integral value -(represented as a double precision number) +function return the largest integral value less than or equal to -.Fa x . +.Fa x , +expressed as a floating-point number. .Sh SEE ALSO .Xr abs 3 , .Xr ceil 3 , |
