| 175 | return mi_recalloc(_Block, _Count, _Size); |
| 176 | } |
| 177 | _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| 178 | void* __cdecl _recalloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Count, _In_ _CRT_GUARDOVERFLOW size_t _Size) { |
| 179 | return mi_recalloc(_Block, _Count, _Size); |
| 180 | } |
| 181 | _ACRTIMP |
| 182 | void __cdecl _aligned_free(_Pre_maybenull_ _Post_invalid_ void* _Block) { |
| 183 | mi_free(_Block); |
nothing calls this directly
no test coverage detected