From 35387027c3f73eacfa73afd1c2d433a3eb4c6441 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Tue, 9 May 2000 01:29:29 +0200 Subject: Correction to inital checkin. --- compat.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'compat.c') 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); } -- cgit v1.2.1