summaryrefslogtreecommitdiffstats
path: root/man3type/div_t.3type
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--man3type/div_t.3type17
1 files changed, 9 insertions, 8 deletions
diff --git a/man3type/div_t.3type b/man3type/div_t.3type
index f0bce13..977d5af 100644
--- a/man3type/div_t.3type
+++ b/man3type/div_t.3type
@@ -4,7 +4,7 @@
.\" SPDX-License-Identifier: Linux-man-pages-copyleft
.\"
.\"
-.TH div_t 3type 2023-03-30 "Linux man-pages 6.05.01"
+.TH div_t 3type 2024-01-16 "Linux man-pages 6.7"
.SH NAME
div_t, ldiv_t, lldiv_t, imaxdiv_t \-
quotient and remainder of an integer division
@@ -14,24 +14,24 @@ Standard C library
.SH SYNOPSIS
.EX
.B #include <stdlib.h>
-.PP
+.P
.B typedef struct {
.BR " int quot;" " /* Quotient */"
.BR " int rem;" " /* Remainder */"
.B } div_t;
-.PP
+.P
.B typedef struct {
.BR " long quot;" " /* Quotient */"
.BR " long rem;" " /* Remainder */"
.B } ldiv_t;
-.PP
+.P
.B typedef struct {
.BR " long long quot;" " /* Quotient */"
.BR " long long rem;" " /* Remainder */"
.B } lldiv_t;
-.PP
+.P
.B #include <inttypes.h>
-.PP
+.P
.B typedef struct {
.BR " intmax_t quot;" " /* Quotient */"
.BR " intmax_t rem;" " /* Remainder */"
@@ -40,9 +40,10 @@ Standard C library
.SH DESCRIPTION
.RI [[ l ] l ] div_t
is the type of the value returned by the
-.RB [[ l ] l ] div (3)
+.RB [[ l ] l ]\c
+.BR div (3)
function.
-.PP
+.P
.I imaxdiv_t
is the type of the value returned by the
.BR imaxdiv (3)