]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/imaxdiv.3.patch
Libc-498.tar.gz
[apple/libc.git] / stdlib / FreeBSD / imaxdiv.3.patch
diff --git a/stdlib/FreeBSD/imaxdiv.3.patch b/stdlib/FreeBSD/imaxdiv.3.patch
new file mode 100644 (file)
index 0000000..8b7d615
--- /dev/null
@@ -0,0 +1,25 @@
+--- _SB/Libc/stdlib/FreeBSD/imaxdiv.3  2003-05-20 15:23:24.000000000 -0700
++++ _SB/Libc/stdlib/FreeBSD/imaxdiv.3.edit     2006-06-28 16:55:52.000000000 -0700
+@@ -40,10 +40,10 @@
+ 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 @@
+ 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