Loading...
--- Libc/Libc-1725.40.4/stdlib/FreeBSD/div.3
+++ Libc/Libc-763.13/stdlib/FreeBSD/div.3
@@ -41,23 +41,21 @@
.Sh SYNOPSIS
.In stdlib.h
.Ft div_t
-.Fn div "int numer" "int denom"
+.Fn div "int num" "int denom"
.Sh DESCRIPTION
The
.Fn div
function
computes the value
-.Fa numer/denom
-(numerator/denominator).
-It returns a structure named
+.Fa num/denom
+and returns the quotient and remainder in a structure named
.Fa div_t
that contains two
.Vt int
members named
.Va quot
-(quotient) and
-.Va rem
-(remainder).
+and
+.Va rem .
.Sh SEE ALSO
.Xr imaxdiv 3 ,
.Xr ldiv 3 ,