using System; using System.Runtime.InteropServices; namespace Math.Gmp.Native { /// /// Return a pointer to newly allocated space with at least bytes. /// /// The minimum number of bytes to allocate. /// A pointer to newly allocated space with at least bytes. public delegate void_ptr allocate_function(size_t alloc_size); }