summaryrefslogtreecommitdiff
path: root/mpfr-gmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpfr-gmp.c')
-rw-r--r--mpfr-gmp.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/mpfr-gmp.c b/mpfr-gmp.c
index ea51cda31..b4ccf407c 100644
--- a/mpfr-gmp.c
+++ b/mpfr-gmp.c
@@ -373,18 +373,3 @@ mpfr_default_free (void *blk_ptr, size_t blk_size)
}
#endif /* Have gmp-impl.h */
-
-#ifndef MPFR_HAVE_MPN_SUB_NC
-mp_limb_t
-mpfr_sub_nc (mp_ptr dest, mp_srcptr op1, mp_srcptr op2, mp_size_t s,
- mp_limb_t c)
-{
- mp_limb_t c2;
- c2 = mpn_sub_n (dest, op1, op2, s);
- MPFR_ASSERTD (c+c2 < MPFR_LIMB_HIGHBIT);
- c2 = mpn_sub_1 (dest, dest, s, c+c2);
- return c2;
-}
-
-#endif /* !Have MPFR_HAVE_MPN_SUB_NC */
-