diff options
author | Kevin Ryde <user42@zip.com.au> | 2000-10-21 22:36:48 +0200 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2000-10-21 22:36:48 +0200 |
commit | 1cf82e91f12d15c42480287ffd8a0129b9115809 (patch) | |
tree | fcaf322e0548a64c9164126830268b7be8cf4fd1 /mpz/iset_ui.c | |
parent | 5053c1ea781951ac68dfd0576e01028ec8bbcbd0 (diff) | |
download | gmp-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_ui.c')
-rw-r--r-- | mpz/iset_ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/iset_ui.c b/mpz/iset_ui.c index b85748b81..062bab043 100644 --- a/mpz/iset_ui.c +++ b/mpz/iset_ui.c @@ -33,7 +33,7 @@ mpz_init_set_ui (x, val) #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); x->_mp_d[0] = val; x->_mp_size = val != 0; } |