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

Function realloc_unlocked

examples/stdlib.c:2416–2419  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2414 return calloc_impl(NULL, nmemb, size, /*lock=*/false);
2415}
2416static void *realloc_unlocked(void *ptr, size_t size)
2417{
2418 return realloc_impl(NULL, ptr, size, /*lock=*/false);
2419}
2420static void free_unlocked(void *ptr)
2421{
2422 free_impl(NULL, ptr, /*lock=*/false);

Callers

nothing calls this directly

Calls 1

realloc_implFunction · 0.85

Tested by

no test coverage detected