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

Function real_calloc

tests/profile/json_memory_profile.cpp:155–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153}
154
155void* real_calloc(size_t n, size_t size) {
156 static auto fn = (void* (*)(size_t, size_t))dlsym(RTLD_NEXT, "calloc");
157 return fn(n, size);
158}
159
160void* real_realloc(void* ptr, size_t size) {
161 static auto fn = (void* (*)(void*, size_t))dlsym(RTLD_NEXT, "realloc");

Callers 1

callocFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected