diff options
Diffstat (limited to 'lib/msun/man/floor.3')
-rw-r--r-- | lib/msun/man/floor.3 | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/lib/msun/man/floor.3 b/lib/msun/man/floor.3 index 6155880..dcea9aa 100644 --- a/lib/msun/man/floor.3 +++ b/lib/msun/man/floor.3 @@ -37,7 +37,8 @@ .Os .Sh NAME .Nm floor , -.Nm floorf +.Nm floorf , +.Nm floorl .Nd largest integral value less than or equal to x .Sh LIBRARY .Lb libm @@ -47,11 +48,15 @@ .Fn floor "double x" .Ft float .Fn floorf "float x" +.Ft long double +.Fn floorl "long double x" .Sh DESCRIPTION The -.Fn floor -and the +.Fn floor , +the .Fn floorf +and the +.Fn floorl functions return the largest integral value less than or equal to .Fa x , @@ -70,3 +75,9 @@ The .Fn floor function conforms to .St -isoC . +The +.Fn floorf +and the +.Fn floorl +functions conform to +.St -isoC-99 . |