| 151 | return mi_malloc(_Size); |
| 152 | } |
| 153 | _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| 154 | void* __cdecl _malloc_base(_In_ size_t _Size) { |
| 155 | return mi_malloc(_Size); |
| 156 | } |
| 157 | _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| 158 | void* __cdecl _realloc_base(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ size_t _Size) { |
| 159 | return mi_realloc(_Block, _Size); |
nothing calls this directly
no test coverage detected