]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/imaxdiv.3
Libc-1044.1.2.tar.gz
[apple/libc.git] / stdlib / FreeBSD / imaxdiv.3
index 2a6bad57fecf7e4867a0e4fb99bceba466905ee0..a9f5e12f53cbefc659076a1b97124dd578994dcf 100644 (file)
 The
 .Fn imaxdiv
 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 .
+The stored result is returned in the form of the
 .Vt imaxdiv_t
 type.
 .Pp
@@ -52,7 +52,7 @@ The
 type is defined as:
 .Bd -literal -offset indent
 typedef struct {
-       intmax_t quot; /* Quotient. */
+       intmax_t quot; /* Quotient.  */
        intmax_t rem;  /* Remainder. */
 } imaxdiv_t;
 .Ed