X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/1f2f436a38f7ae2d39a943ad2898d8fed4ed2e58..e07eda1a0324f771bb1ed20ef94f3229005ee46c:/stdlib/FreeBSD/div.3 diff --git a/stdlib/FreeBSD/div.3 b/stdlib/FreeBSD/div.3 index b29ca13..4a5bd35 100644 --- a/stdlib/FreeBSD/div.3 +++ b/stdlib/FreeBSD/div.3 @@ -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 ,