]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/lldiv.3
Libc-1244.50.9.tar.gz
[apple/libc.git] / stdlib / FreeBSD / lldiv.3
index 96ecf1aeec70fc12d1261abed11564bd0e9c8b5f..98f4813574728d9a920fcb4315cf8c1dc27b8a3b 100644 (file)
 The
 .Fn lldiv
 function computes the value of
-.Fa numer
+.Fa numer ,
 divided by
-.Fa denom
-and returns the stored result in the form of the
+.Fa denom .
+It returns the stored result in the form of the
 .Vt lldiv_t
 type.
 .Pp
@@ -52,7 +52,7 @@ The
 type is defined as:
 .Bd -literal -offset indent
 typedef struct {
-       long long quot; /* Quotient. */
+       long long quot; /* Quotient.  */
        long long rem;  /* Remainder. */
 } lldiv_t;
 .Ed