aboutsummaryrefslogtreecommitdiff
path: root/lib/msun/man/lround.3
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2005-01-13 10:43:01 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2005-01-13 10:43:01 +0000
commit83e0359d53c505627a61045a838e3af779eaa5b3 (patch)
tree3f9952c0fb7b1f7a3ed66e30b0e09c4e10942db3 /lib/msun/man/lround.3
parent133da95f5e18048de5f2b1a4131863da8acc06fa (diff)
downloadsrc-83e0359d53c505627a61045a838e3af779eaa5b3.tar.gz
src-83e0359d53c505627a61045a838e3af779eaa5b3.zip
Markup nits.
Notes
Notes: svn path=/head/; revision=140177
Diffstat (limited to 'lib/msun/man/lround.3')
-rw-r--r--lib/msun/man/lround.316
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/msun/man/lround.3 b/lib/msun/man/lround.3
index e5479aea7671..d45bb27fcb52 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 ,