MCPcopy Index your code
hub / github.com/dcodeIO/webassembly / realloc

Function realloc

lib/malloc.c:42–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42void* realloc(void* p, size_t n) {
43 return dlrealloc(p, n);
44}
45
46void* calloc(size_t n_elements, size_t element_size) {
47 return dlcalloc(n_elements, element_size);

Callers

nothing calls this directly

Calls 1

dlreallocFunction · 0.85

Tested by

no test coverage detected