From 007f2600b1c66a54973383cacbff4657c392006d Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Tue, 5 Dec 2000 20:00:00 +0100 Subject: * compat.c (mpn_divexact_by3, mpn_divmod_1): Return types should be mp_limb_t, not int. --- compat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compat.c') diff --git a/compat.c b/compat.c index 6ca1308bf..030764c39 100644 --- a/compat.c +++ b/compat.c @@ -28,7 +28,7 @@ MA 02111-1307, USA. /* mpn_divexact_by3 was a function in gmp 3.0, but as of gmp 3.1 it's a macro calling mpn_divexact_by3c. */ -int +mp_limb_t __MPN (divexact_by3) (mp_ptr dst, mp_srcptr src, mp_size_t size) { mpn_divexact_by3 (dst, src, size); @@ -37,7 +37,7 @@ __MPN (divexact_by3) (mp_ptr dst, mp_srcptr src, mp_size_t size) /* mpn_divmod_1 was a function in gmp 3.0 and earlier, but marked obsolete in gmp 2 and 3. As of gmp 3.1 it's a macro calling mpn_divrem_1. */ -int +mp_limb_t __MPN (divmod_1) (mp_ptr dst, mp_srcptr src, mp_size_t size, mp_limb_t divisor) { mpn_divmod_1 (dst, src, size, divisor); -- cgit v1.2.1