summaryrefslogtreecommitdiff
path: root/mpf/dump.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 /mpf/dump.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 'mpf/dump.c')
-rw-r--r--mpf/dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpf/dump.c b/mpf/dump.c
index a4fadcc7a..9f026ecd3 100644
--- a/mpf/dump.c
+++ b/mpf/dump.c
@@ -44,5 +44,5 @@ mpf_dump (u)
printf ("-0.%se%ld\n", str + 1, exp);
else
printf ("0.%se%ld\n", str, exp);
- (*_mp_free_func) (str, 0);/* ??? broken alloc interface, pass what size ??? */
+ (*__gmp_free_func) (str, 0);/* ??? broken alloc interface, pass what size ??? */
}