summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c4
1 files changed, 2 insertions, 2 deletions
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);