summaryrefslogtreecommitdiff
path: root/mpfr/mpfr.h
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 /mpfr/mpfr.h
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 'mpfr/mpfr.h')
-rw-r--r--mpfr/mpfr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpfr/mpfr.h b/mpfr/mpfr.h
index 9f25eba2f..78034affb 100644
--- a/mpfr/mpfr.h
+++ b/mpfr/mpfr.h
@@ -102,7 +102,7 @@ typedef __gmp_const __mpfr_struct *mpfr_srcptr;
/* reallocates the mantissa of x to q bits and sets the precision to q */
#define _mpfr_realloc(x, q) { \
- (x)->_mp_d = (mp_ptr) (*_mp_reallocate_func) \
+ (x)->_mp_d = (mp_ptr) (*__gmp_reallocate_func) \
((x)->_mp_d, (x)->_mp_prec>>3 + 1, (q)>>3 + 1); \
(x)->_mp_prec = q; }