]> git.saurik.com Git - apple/libc.git/blob - stdlib/FreeBSD/imaxdiv.3.patch
8b7d6151578a307a3bee91422126755b18028f0c
[apple/libc.git] / stdlib / FreeBSD / imaxdiv.3.patch
1 --- _SB/Libc/stdlib/FreeBSD/imaxdiv.3 2003-05-20 15:23:24.000000000 -0700
2 +++ _SB/Libc/stdlib/FreeBSD/imaxdiv.3.edit 2006-06-28 16:55:52.000000000 -0700
3 @@ -40,10 +40,10 @@
4 The
5 .Fn imaxdiv
6 function computes the value of
7 -.Fa numer
8 +.Fa numer ,
9 divided by
10 -.Fa denom
11 -and returns the stored result in the form of the
12 +.Fa denom .
13 +The stored result is returned in the form of the
14 .Vt imaxdiv_t
15 type.
16 .Pp
17 @@ -52,7 +52,7 @@
18 type is defined as:
19 .Bd -literal -offset indent
20 typedef struct {
21 - intmax_t quot; /* Quotient. */
22 + intmax_t quot; /* Quotient. */
23 intmax_t rem; /* Remainder. */
24 } imaxdiv_t;
25 .Ed