summaryrefslogtreecommitdiff
path: root/mpn
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2001-11-03 17:55:16 +0100
committertege <tege@gmplib.org>2001-11-03 17:55:16 +0100
commitf74f9cb20702735a66a6dbe43652c66f17168d66 (patch)
treeb5df6a41fb82254ebbab8e6be3523e597a9c6440 /mpn
parent20281a1a28f6441a79794131d715e67fd80cd9df (diff)
downloadgmp-f74f9cb20702735a66a6dbe43652c66f17168d66.tar.gz
Fix incorrect header comments.
Diffstat (limited to 'mpn')
-rw-r--r--mpn/generic/sb_divrem_mn.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/mpn/generic/sb_divrem_mn.c b/mpn/generic/sb_divrem_mn.c
index a14a84d29..21c0d4b98 100644
--- a/mpn/generic/sb_divrem_mn.c
+++ b/mpn/generic/sb_divrem_mn.c
@@ -55,9 +55,7 @@ MA 02111-1307, USA. */
/* Divide num (NP/NSIZE) by den (DP/DSIZE) and write
the NSIZE-DSIZE least significant quotient limbs at QP
- and the DSIZE long remainder at NP. If QEXTRA_LIMBS is
- non-zero, generate that many fraction bits and append them after the
- other quotient limbs.
+ and the DSIZE long remainder at NP.
Return the most significant limb of the quotient, this is always 0 or 1.
Preconditions:
@@ -67,7 +65,7 @@ MA 02111-1307, USA. */
QP + DSIZE >= NP must hold true. (This means that it's
possible to put the quotient in the high part of NUM, right after the
remainder in NUM.
- 3. NSIZE >= DSIZE, even if QEXTRA_LIMBS is non-zero.
+ 3. NSIZE >= DSIZE.
4. DSIZE >= 2. */