| 93 | extern inline size_t RPMALLOC_CDECL _msize(void* ptr) { return rpmalloc_usable_size(ptr); } |
| 94 | extern inline size_t RPMALLOC_CDECL _msize_base(void* ptr) { return rpmalloc_usable_size(ptr); } |
| 95 | extern inline RPMALLOC_RESTRICT void* RPMALLOC_CDECL _realloc_base(void* ptr, size_t size) { return rprealloc(ptr, size); } |
| 96 | #endif |
| 97 | |
| 98 | #ifdef _WIN32 |
nothing calls this directly
no test coverage detected