summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/compat.c b/compat.c
index e33aa4fc2..eecde158b 100644
--- a/compat.c
+++ b/compat.c
@@ -29,9 +29,8 @@ MA 02111-1307, USA.
/* mpn_divexact_by3 was a function in gmp 3.0, but in gmp 3.1 it became a
macro calling mpn_divexact_by3c. */
-#undef mpn_divexact_by3
int
-__MPN (mpn_divexact_by3) (mp_ptr dst, mp_srcptr src, mp_size_t size)
+__MPN (divexact_by3) (mp_ptr dst, mp_srcptr src, mp_size_t size)
{
- mpn_divexact_by3c (dst, src, size, 0);
+ mpn_divexact_by3 (dst, src, size);
}