Signed-off-by: Alejandro Colomar <alx.manpages@xxxxxxxxx> --- man3/div_t.3 | 14 ++++++++++---- man3/ldiv_t.3 | 2 +- man7/system_data_types.7 | 23 ----------------------- 3 files changed, 11 insertions(+), 28 deletions(-) diff --git a/man3/div_t.3 b/man3/div_t.3 index bf1687e0d..3d2697cac 100644 --- a/man3/div_t.3 +++ b/man3/div_t.3 @@ -1,6 +1,6 @@ .TH DIV_T 3 2021-11-02 Linux "Linux Programmer's Manual" .SH NAME -div_t, imaxdiv_t \- quotient and remainder of an integer division +div_t, ldiv_t, imaxdiv_t \- quotient and remainder of an integer division .SH SYNOPSIS .nf .B #include <stdlib.h> @@ -10,6 +10,11 @@ div_t, imaxdiv_t \- quotient and remainder of an integer division .BR " int rem;" " /* Remainder */" .B } div_t; .PP +.B typedef struct { +.BR " long quot;" " /* Quotient */" +.BR " long rem;" " /* Remainder */" +.B } ldiv_t; +.PP .B #include <inttypes.h> .PP .B typedef struct { @@ -18,9 +23,9 @@ div_t, imaxdiv_t \- quotient and remainder of an integer division .B } imaxdiv_t; .fi .SH DESCRIPTION -.I div_t +.RI [ l ] div_t is the type of the value returned by the -.BR div (3) +.RB [ l ] div (3) function. .PP .I imaxdiv_t @@ -31,4 +36,5 @@ function. C99 and later; POSIX.1-2001 and later. .SH SEE ALSO .BR div (3), -.BR imaxdiv (3) +.BR imaxdiv (3), +.BR ldiv (3) diff --git a/man3/ldiv_t.3 b/man3/ldiv_t.3 index db50c0f09..e29b9e797 100644 --- a/man3/ldiv_t.3 +++ b/man3/ldiv_t.3 @@ -1 +1 @@ -.so man7/system_data_types.7 +.so man3/div_t.3 diff --git a/man7/system_data_types.7 b/man7/system_data_types.7 index 25a45e318..4acce2e41 100644 --- a/man7/system_data_types.7 +++ b/man7/system_data_types.7 @@ -136,29 +136,6 @@ types in this page. .RE .\"------------------------------------- lconv ------------------------/ .\"------------------------------------- ldiv_t -----------------------/ -.TP -.I ldiv_t -.RS -.IR Include : -.IR <stdlib.h> . -.PP -.EX -typedef struct { - long quot; /* Quotient */ - long rem; /* Remainder */ -} ldiv_t; -.EE -.PP -It is the type of the value returned by the -.BR ldiv (3) -function. -.PP -.IR "Conforming to" : -C99 and later; POSIX.1-2001 and later. -.PP -.IR "See also" : -.BR ldiv (3) -.RE .\"------------------------------------- lldiv_t ----------------------/ .TP .I lldiv_t -- 2.33.1