this repo has no description
at fixPythonPipStalling 18 lines 317 B view raw
1#include <elfcalls.h> 2 3extern struct elf_calls* _elfcalls; 4 5extern "C" 6void* xtrace_malloc(size_t size) { 7 return _elfcalls->malloc(size); 8} 9 10extern "C" 11void xtrace_free(void *ptr) { 12 _elfcalls->free(ptr); 13} 14 15extern "C" 16void* xtrace_realloc(void *ptr, size_t size) { 17 return _elfcalls->realloc(ptr, size); 18}