summaryrefslogtreecommitdiff
path: root/mpz/get_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/get_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/get_str.c')
-rw-r--r--mpz/get_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/get_str.c b/mpz/get_str.c
index 9c46e594b..d8e42b29e 100644
--- a/mpz/get_str.c
+++ b/mpz/get_str.c
@@ -67,7 +67,7 @@ mpz_get_str (res_str, base, x)
{
/* We didn't get a string from the user. Allocate one (and return
a pointer to it). */
- res_str = (char *) (*_mp_allocate_func) (str_size);
+ res_str = (char *) (*__gmp_allocate_func) (str_size);
/* Make str, the variable used for raw result from mpn_get_str,
point to the same string, but just after a possible minus sign. */
str = (unsigned char *) res_str + 1;