Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
42
void* realloc(void* p, size_t n) {
43
return dlrealloc(p, n);
44
}
45
46
void* calloc(size_t n_elements, size_t element_size) {
47
return dlcalloc(n_elements, element_size);
Callers
nothing calls this directly
Calls
1
dlrealloc
Function · 0.85
Tested by
no test coverage detected