Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/F-Stack/f-stack
/ ff_realloc
Function
ff_realloc
lib/ff_host_interface.c:118–127 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
116
117
118
void *
119
ff_realloc(void *p, uint64_t size)
120
{
121
if (size) {
122
//return rte_realloc(p, size, 0);
123
return (realloc(p, size));
124
}
125
126
return (p);
127
}
128
129
130
void
Callers
2
realloc
Function · 0.85
reallocf
Function · 0.85
Calls
1
realloc
Function · 0.70
Tested by
no test coverage detected