Loading...
stdlib/div.3 Libc-583 Libc-262
--- Libc/Libc-583/stdlib/div.3
+++ Libc/Libc-262/stdlib/div.3
@@ -32,9 +32,9 @@
 .\" SUCH DAMAGE.
 .\"
 .\"     @(#)div.3	8.1 (Berkeley) 6/4/93
-.\" $FreeBSD: src/lib/libc/stdlib/div.3,v 1.8 2002/12/18 13:33:03 ru Exp $
+.\" $FreeBSD: src/lib/libc/stdlib/div.3,v 1.6 2001/09/07 14:46:35 asmodai Exp $
 .\"
-.Dd November 14, 2001
+.Dd June 4, 1993
 .Dt DIV 3
 .Os
 .Sh NAME
@@ -45,30 +45,26 @@
 .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
+.Em int
 members named
-.Va quot
-(quotient) and
-.Va rem
-(remainder).
+.Fa quot
+and
+.Fa rem .
 .Sh SEE ALSO
-.Xr imaxdiv 3 ,
-.Xr ldiv 3 ,
-.Xr lldiv 3
+.Xr ldiv 3
 .Sh STANDARDS
 The
 .Fn div
 function
 conforms to
-.St -isoC-99 .
+.St -isoC .