diff options
author | Kevin Ryde <user42@zip.com.au> | 2000-12-05 20:00:00 +0100 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2000-12-05 20:00:00 +0100 |
commit | 007f2600b1c66a54973383cacbff4657c392006d (patch) | |
tree | 83524d1472387688569630a96c3e27dcc7f7a315 | |
parent | e802516de065714fe08ba501fc19f85604a96eeb (diff) | |
download | gmp-007f2600b1c66a54973383cacbff4657c392006d.tar.gz |
* compat.c (mpn_divexact_by3, mpn_divmod_1): Return types should be
mp_limb_t, not int.
-rw-r--r-- | compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |