]>
Commit | Line | Data |
---|---|---|
224c7076 A |
1 | --- _SB/Libc/stdlib/FreeBSD/lldiv.3 2003-05-20 15:23:24.000000000 -0700 |
2 | +++ _SB/Libc/stdlib/FreeBSD/lldiv.3.edit 2006-06-28 16:55:53.000000000 -0700 | |
3 | @@ -40,10 +40,10 @@ | |
4 | The | |
5 | .Fn lldiv | |
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 | +It returns the stored result in the form of the | |
14 | .Vt lldiv_t | |
15 | type. | |
16 | .Pp | |
17 | @@ -52,7 +52,7 @@ | |
18 | type is defined as: | |
19 | .Bd -literal -offset indent | |
20 | typedef struct { | |
21 | - long long quot; /* Quotient. */ | |
22 | + long long quot; /* Quotient. */ | |
23 | long long rem; /* Remainder. */ | |
24 | } lldiv_t; | |
25 | .Ed |