MCPcopy Create free account
hub / github.com/FastLED/FastLED / real_realloc

Function real_realloc

tests/profile/json_memory_profile.cpp:160–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158}
159
160void* real_realloc(void* ptr, size_t size) {
161 static auto fn = (void* (*)(void*, size_t))dlsym(RTLD_NEXT, "realloc");
162 return fn(ptr, size);
163}
164
165void real_free(void* ptr) {
166 static auto fn = (void (*)(void*))dlsym(RTLD_NEXT, "free");

Callers 1

reallocFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected