summaryrefslogtreecommitdiff
path: root/mpn
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2012-11-10 14:35:44 +0100
committerTorbjorn Granlund <tege@gmplib.org>2012-11-10 14:35:44 +0100
commita7a789f4661ddd7afecbcb0decd3959eb6270c40 (patch)
treecf6c72273e859e52dd7b85c1ce0bb2745b5d48e3 /mpn
parentdadd6a662b1d3dddf6a01c1c0b0055695b93e8b9 (diff)
downloadgmp-a7a789f4661ddd7afecbcb0decd3959eb6270c40.tar.gz
(mpn_bdiv_qr_wrap): Make static.
Diffstat (limited to 'mpn')
-rw-r--r--mpn/generic/remove.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpn/generic/remove.c b/mpn/generic/remove.c
index f39dca551..446b259b7 100644
--- a/mpn/generic/remove.c
+++ b/mpn/generic/remove.c
@@ -51,7 +51,7 @@ along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
indicates a flaw in the current itch mechanism: Which operands not greater
than un,un will incur the worst itch? We need a parallel foo_maxitch set
of functions. */
-void
+static void
mpn_bdiv_qr_wrap (mp_ptr qp, mp_ptr rp,
mp_srcptr np, mp_size_t nn,
mp_srcptr dp, mp_size_t dn)
@@ -115,7 +115,7 @@ mpn_remove (mp_ptr wp, mp_size_t *wn,
if (((mp_bitcnt_t) 2 << npowers) - 1 > cap)
break;
- nn = 2 * pn - 1; /* next power will be at least this many limbs */
+ nn = 2 * pn - 1; /* next power will be at least this large */
if (nn > qn)
break; /* next power would be overlarge */