diff options
author | ru <ru@FreeBSD.org> | 2005-01-13 10:43:01 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-01-13 10:43:01 +0000 |
commit | d9ecb772dbf34edc2e570432ca6796391770d95c (patch) | |
tree | 3f9952c0fb7b1f7a3ed66e30b0e09c4e10942db3 /lib/msun/man/lround.3 | |
parent | 17b51a3306627ad58cf45a3ad54dbcb476f4bf32 (diff) | |
download | FreeBSD-src-d9ecb772dbf34edc2e570432ca6796391770d95c.zip FreeBSD-src-d9ecb772dbf34edc2e570432ca6796391770d95c.tar.gz |
Markup nits.
Diffstat (limited to 'lib/msun/man/lround.3')
-rw-r--r-- | lib/msun/man/lround.3 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/msun/man/lround.3 b/lib/msun/man/lround.3 index e5479ae..d45bb27 100644 --- a/lib/msun/man/lround.3 +++ b/lib/msun/man/lround.3 @@ -32,14 +32,14 @@ .Nm llroundf , .Nm lround , .Nm lroundf -.Nd convert to nearest integral value +.Nd "convert to nearest integral value" .Sh LIBRARY .Lb libm .Sh SYNOPSIS .In math.h -.Ft long long +.Ft "long long" .Fn llround "double x" -.Ft long long +.Ft "long long" .Fn llroundf "float x" .Ft long .Fn lround "double x" @@ -52,7 +52,7 @@ function returns the integer nearest to its argument .Fa x , rounding away from zero in halfway cases. If the rounded result is too large to be represented as a -.Ft long +.Vt long value, an invalid exception is raised and the return value is undefined. Otherwise, if .Fa x @@ -60,12 +60,12 @@ is not an integer, .Fn lround may raise an inexact exception. When the rounded result is representable as a -.Ft long , +.Vt long , the expression -.Li lround(x) +.Fn lround x is equivalent to -.Li (long)round(x) -(although the former may be more efficient.) +.Po Vt long Pc Ns Fn round x +(although the former may be more efficient). .Pp The .Fn llround , |