summaryrefslogtreecommitdiff
path: root/mpf/div_2exp.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2009-12-20 23:54:57 +0100
committerTorbjorn Granlund <tege@gmplib.org>2009-12-20 23:54:57 +0100
commit3ba1597c34eeddef0c820863d98ed9506c8d3e9c (patch)
tree967966420d447f3e630ca1cc85709b7f9c1e03af /mpf/div_2exp.c
parenta6426a5313cac3c0fb05358e7d254653222f745f (diff)
downloadgmp-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.c2
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;