Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
.TH DIV_T 3 2021-11-02 Linux "Linux Programmer's Manual"
.SH NAME
-div_t, ldiv_t, imaxdiv_t \- quotient and remainder of an integer division
+div_t, ldiv_t, lldiv_t, imaxdiv_t \- quotient and remainder of an integer division
.SH SYNOPSIS
.nf
.B #include <stdlib.h>
.BR " long rem;" " /* Remainder */"
.B } ldiv_t;
.PP
+.B typedef struct {
+.BR " long long quot;" " /* Quotient */"
+.BR " long long rem;" " /* Remainder */"
+.B } lldiv_t;
+.PP
.B #include <inttypes.h>
.PP
.B typedef struct {
.B } imaxdiv_t;
.fi
.SH DESCRIPTION
-.RI [ l ] div_t
+.RI [[ l ] l ] div_t
is the type of the value returned by the
-.RB [ l ] div (3)
+.RB [[ l ] l ] div (3)
function.
.PP
.I imaxdiv_t
.SH SEE ALSO
.BR div (3),
.BR imaxdiv (3),
-.BR ldiv (3)
+.BR ldiv (3),
+.BR lldiv (3)
-.so man7/system_data_types.7
+.so man3/div_t.3
.\"------------------------------------- lconv ------------------------/
.\"------------------------------------- ldiv_t -----------------------/
.\"------------------------------------- lldiv_t ----------------------/
-.TP
-.I lldiv_t
-.RS
-.IR Include :
-.IR <stdlib.h> .
-.PP
-.EX
-typedef struct {
- long long quot; /* Quotient */
- long long rem; /* Remainder */
-} lldiv_t;
-.EE
-.PP
-It is the type of the value returned by the
-.BR lldiv (3)
-function.
-.PP
-.IR "Conforming to" :
-C99 and later; POSIX.1-2001 and later.
-.PP
-.IR "See also" :
-.BR lldiv (3)
-.RE
.\"------------------------------------- mode_t -----------------------/
.TP
.I mode_t