summaryrefslogtreecommitdiff
path: root/mpz/iset_str.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-10-21 22:36:48 +0200
committerKevin Ryde <user42@zip.com.au>2000-10-21 22:36:48 +0200
commit1cf82e91f12d15c42480287ffd8a0129b9115809 (patch)
treefcaf322e0548a64c9164126830268b7be8cf4fd1 /mpz/iset_str.c
parent5053c1ea781951ac68dfd0576e01028ec8bbcbd0 (diff)
downloadgmp-1cf82e91f12d15c42480287ffd8a0129b9115809.tar.gz
* * (__gmp_allocate_func etc): Rename from _mp_allocate_func etc.
(__gmp_default_allocate etc): Rename from _mp_default_allocate etc.
Diffstat (limited to 'mpz/iset_str.c')
-rw-r--r--mpz/iset_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/iset_str.c b/mpz/iset_str.c
index c90c5886d..399265a67 100644
--- a/mpz/iset_str.c
+++ b/mpz/iset_str.c
@@ -38,7 +38,7 @@ mpz_init_set_str (x, str, base)
#endif
{
x->_mp_alloc = 1;
- x->_mp_d = (mp_ptr) (*_mp_allocate_func) (BYTES_PER_MP_LIMB);
+ x->_mp_d = (mp_ptr) (*__gmp_allocate_func) (BYTES_PER_MP_LIMB);
/* if str has no digits mpz_set_str leaves x->_mp_size unset */
x->_mp_size = 0;