summaryrefslogtreecommitdiff
path: root/man3/div.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2005-10-19 07:07:02 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2005-10-19 07:07:02 +0000
commit63aa9df02fee88a559822c460ab5a30f1d8414ee (patch)
treefedc607745a57e06a1a541feca62e18d51523ddb /man3/div.3
parente511ffb6bcaa9a584412a95e602435827e302033 (diff)
Automated unformatting of parentheses using unformat_parens.sh
Diffstat (limited to 'man3/div.3')
-rw-r--r--man3/div.34
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/div.3 b/man3/div.3
index f02eeb6ce..552826cd1 100644
--- a/man3/div.3
+++ b/man3/div.3
@@ -47,13 +47,13 @@ div, ldiv, lldiv, imaxdiv \- compute quotient and remainder of an integer divisi
.BI "imaxdiv_t imaxdiv(intmax_t " numerator ", intmax_t " denominator );
.fi
.SH DESCRIPTION
-The \fBdiv()\fP function computes the value \fInumerator\fP/\fIdenominator\fP and
+The \fBdiv\fP() function computes the value \fInumerator\fP/\fIdenominator\fP and
returns the quotient and remainder in a structure named \fIdiv_t\fP that contains
two integer members (in unspecified order) named \fIquot\fP and \fIrem\fP.
The quotient is rounded towards zero.
The result satisfies \fIquot\fP*\fIdenominator\fP+\fIrem\fP = \fInumerator\fP.
.LP
-The \fBldiv()\fP and \fBlldiv()\fP and \fBimaxdiv()\fP functions do the same,
+The \fBldiv\fP() and \fBlldiv\fP() and \fBimaxdiv\fP() functions do the same,
dividing numbers of the indicated type and returning the result in a structure
of the indicated name, in all cases with fields \fIquot\fP and \fIrem\fP
of the same type as the function arguments.