aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/lldiv.3
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2001-11-21 16:19:50 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2001-11-21 16:19:50 +0000
commitb18f2299302b0a9753621937d5b858bd9fefaa90 (patch)
tree9fda5ed657b3a52e0737652661d84437f950354c /lib/libc/stdlib/lldiv.3
parent224049f51548a914f7992233fd7234ef66a460f4 (diff)
downloadsrc-b18f2299302b0a9753621937d5b858bd9fefaa90.tar.gz
src-b18f2299302b0a9753621937d5b858bd9fefaa90.zip
mdoc(7) police: fixed typos and minor markup nits.
Notes
Notes: svn path=/head/; revision=86737
Diffstat (limited to 'lib/libc/stdlib/lldiv.3')
-rw-r--r--lib/libc/stdlib/lldiv.316
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/libc/stdlib/lldiv.3 b/lib/libc/stdlib/lldiv.3
index 980ab67695d9..976a997b9cc8 100644
--- a/lib/libc/stdlib/lldiv.3
+++ b/lib/libc/stdlib/lldiv.3
@@ -34,8 +34,8 @@
.Lb libc
.Sh SYNOPSIS
.In stdlib.h
-.Ft "lldiv_t"
-.Fn llabs "long long numer" "long long denom"
+.Ft lldiv_t
+.Fn lldiv "long long numer" "long long denom"
.Sh DESCRIPTION
The
.Fn lldiv
@@ -43,17 +43,19 @@ function computes the value of
.Fa numer
divided by
.Fa denom
-and returns the stored result in the form of the lldiv_t type.
+and returns the stored result in the form of the
+.Vt lldiv_t
+type.
.Pp
-The lldiv_t type is defined as:
-.Pp
-.Bd -literal -offset indent -compact
+The
+.Vt lldiv_t
+type is defined as:
+.Bd -literal -offset indent
typedef struct {
long long quot; /* Quotient. */
long long rem; /* Remainder. */
} lldiv_t;
.Ed
-.Pp
.Sh SEE ALSO
.Xr div 3 ,
.Xr imaxdiv 3 ,