MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / dRealloc

Function dRealloc

3rd_party/Src/ode/ode/src/memory.cpp:76–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74
75
76void * dRealloc (void *ptr, size_t oldsize, size_t newsize)
77{
78 if (reallocfn) return reallocfn (ptr,oldsize,newsize);
79 else return realloc (ptr,newsize);
80}
81
82
83void dFree (void *ptr, size_t size)

Callers 1

_setSizeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected