summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-12-05 20:00:00 +0100
committerKevin Ryde <user42@zip.com.au>2000-12-05 20:00:00 +0100
commit007f2600b1c66a54973383cacbff4657c392006d (patch)
tree83524d1472387688569630a96c3e27dcc7f7a315 /compat.c
parente802516de065714fe08ba501fc19f85604a96eeb (diff)
downloadgmp-007f2600b1c66a54973383cacbff4657c392006d.tar.gz
* compat.c (mpn_divexact_by3, mpn_divmod_1): Return types should be
mp_limb_t, not int.
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);