mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
0b514caa50
Moving it inside gcc dir allows gcc to detect and build isl while building gcc. It has dependencies on other libraries that would need to be prebuilt if we build it ourselves. This is one of a few steps in building gcc with isl and allowing graphite optimization flags.
15 lines
373 B
C
15 lines
373 B
C
#include <gmp.h>
|
|
|
|
void mp_get_memory_functions(
|
|
void *(**alloc_func_ptr) (size_t),
|
|
void *(**realloc_func_ptr) (void *, size_t, size_t),
|
|
void (**free_func_ptr) (void *, size_t))
|
|
{
|
|
if (alloc_func_ptr)
|
|
*alloc_func_ptr = __gmp_allocate_func;
|
|
if (realloc_func_ptr)
|
|
*realloc_func_ptr = __gmp_reallocate_func;
|
|
if (free_func_ptr)
|
|
*free_func_ptr = __gmp_free_func;
|
|
}
|