3 void mp_get_memory_functions(
4 void *(**alloc_func_ptr
) (size_t),
5 void *(**realloc_func_ptr
) (void *, size_t, size_t),
6 void (**free_func_ptr
) (void *, size_t))
9 *alloc_func_ptr
= __gmp_allocate_func
;
11 *realloc_func_ptr
= __gmp_reallocate_func
;
13 *free_func_ptr
= __gmp_free_func
;