MCPcopy 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
118void *
119ff_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
130void

Callers 2

reallocFunction · 0.85
reallocfFunction · 0.85

Calls 1

reallocFunction · 0.70

Tested by

no test coverage detected