MCPcopy Create free account
hub / github.com/GJDuck/e9patch / calloc

Function calloc

examples/stdlib.c:2395–2398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2393 return malloc_impl(NULL, size, /*lock=*/true);
2394}
2395static void *calloc(size_t nmemb, size_t size)
2396{
2397 return calloc_impl(NULL, nmemb, size, /*lock=*/true);
2398}
2399static void *realloc(void *ptr, size_t size)
2400{
2401 return realloc_impl(NULL, ptr, size, /*lock=*/true);

Callers 3

dwarf_begin_elfFunction · 0.85
elf_getscnFunction · 0.85
allocate_elfFunction · 0.85

Calls 1

calloc_implFunction · 0.85

Tested by

no test coverage detected