]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/div.3
Libc-1439.100.3.tar.gz
[apple/libc.git] / stdlib / FreeBSD / div.3
index b29ca13c5a8ce3a7dcec0f0d061562c450056e3b..4a5bd35b37b9997b41f92efad8b076319f5fd580 100644 (file)
 .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 ,