X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/7b00c0c43f52e9d27168e67a26aac19065cdb40c..ad3c9f2af814c84582fdd1649e49ec4f68572c5a:/stdlib/FreeBSD/div.3.patch diff --git a/stdlib/FreeBSD/div.3.patch b/stdlib/FreeBSD/div.3.patch deleted file mode 100644 index 9d2d044..0000000 --- a/stdlib/FreeBSD/div.3.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- div.3.bsdnew 2009-11-13 14:11:48.000000000 -0800 -+++ div.3 2009-11-13 14:11:48.000000000 -0800 -@@ -41,21 +41,23 @@ - .Sh SYNOPSIS - .In stdlib.h - .Ft div_t --.Fn div "int num" "int denom" -+.Fn div "int numer" "int denom" - .Sh DESCRIPTION - The - .Fn div - function - computes the value --.Fa num/denom --and returns the quotient and remainder in a structure named -+.Fa numer/denom -+(numerator/denominator). -+It returns a structure named - .Fa div_t - that contains two - .Vt int - members named - .Va quot --and --.Va rem . -+(quotient) and -+.Va rem -+(remainder). - .Sh SEE ALSO - .Xr imaxdiv 3 , - .Xr ldiv 3 ,