Add comment

This commit is contained in:
Alexey Milovidov 2021-08-05 23:51:39 +03:00
parent 638b229e27
commit b1eb3fde6c

View File

@ -2,6 +2,9 @@
#include <cstdlib>
/** These functions can be substituted instead of regular ones when memory tracking is needed.
*/
extern "C" void * clickhouse_malloc(size_t size)
{
void * res = malloc(size);