diff options
author | Torbjorn Granlund <tege@gmplib.org> | 2009-12-20 23:54:57 +0100 |
---|---|---|
committer | Torbjorn Granlund <tege@gmplib.org> | 2009-12-20 23:54:57 +0100 |
commit | 3ba1597c34eeddef0c820863d98ed9506c8d3e9c (patch) | |
tree | 967966420d447f3e630ca1cc85709b7f9c1e03af /mpf/div_2exp.c | |
parent | a6426a5313cac3c0fb05358e7d254653222f745f (diff) | |
download | gmp-3ba1597c34eeddef0c820863d98ed9506c8d3e9c.tar.gz |
Change all bit counts for bignums to use mp_bitcnt_t. Update documentation.
Diffstat (limited to 'mpf/div_2exp.c')
-rw-r--r-- | mpf/div_2exp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpf/div_2exp.c b/mpf/div_2exp.c index eea5de3bc..f74cd8bcd 100644 --- a/mpf/div_2exp.c +++ b/mpf/div_2exp.c @@ -65,7 +65,7 @@ along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */ then use that mpn_rshift. */ void -mpf_div_2exp (mpf_ptr r, mpf_srcptr u, unsigned long int exp) +mpf_div_2exp (mpf_ptr r, mpf_srcptr u, mp_bitcnt_t exp) { mp_srcptr up; mp_ptr rp = r->_mp_d; |