[−][src]Type Definition gmp_mpfr_sys::gmp::allocate_function
type allocate_function = Option<extern "C" fn(alloc_size: usize) -> *mut c_void>;
See: allocate_function
Planned change
In the next major version of the crate (version 2), this will be
changed to
unsafe extern "C" fn(alloc_size: usize) -> *mut c_void
, that is
it will no longer be an Option
, and the function can also be
unsafe.