]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
div_t.3, lldiv_t.3, system_data_types.7: Move lldiv_t to div_t.3
authorAlejandro Colomar <alx.manpages@gmail.com>
Tue, 2 Nov 2021 17:39:04 +0000 (18:39 +0100)
committerAlejandro Colomar <alx.manpages@gmail.com>
Thu, 24 Feb 2022 22:17:45 +0000 (23:17 +0100)
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
man3/div_t.3
man3/lldiv_t.3
man7/system_data_types.7

index 3d2697cac169e3c4cd3e1b9495bcb03c5933c284..34513ca91e5c804fa3d50e0085d49a424b2853e6 100644 (file)
@@ -1,6 +1,6 @@
 .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>
@@ -15,6 +15,11 @@ div_t, ldiv_t, imaxdiv_t \- quotient and remainder of an integer division
 .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 {
@@ -23,9 +28,9 @@ div_t, ldiv_t, imaxdiv_t \- quotient and remainder of an integer division
 .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
@@ -37,4 +42,5 @@ C99 and later; POSIX.1-2001 and later.
 .SH SEE ALSO
 .BR div (3),
 .BR imaxdiv (3),
-.BR ldiv (3)
+.BR ldiv (3),
+.BR lldiv (3)
index db50c0f091ba6442b76b46ac3e8ede4579ef8d55..e29b9e797d3158f106bc43a700d0276188463560 100644 (file)
@@ -1 +1 @@
-.so man7/system_data_types.7
+.so man3/div_t.3
index 04afe6697825c1f07bdae89fc0ea50cf92c5273e..f8c2a4a1f5c5282f66e93aea68fd741613256177 100644 (file)
@@ -137,29 +137,6 @@ types in this page.
 .\"------------------------------------- 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