/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/histogram/src/hdr_malloc.h
19 строк
611 B
Marco Ippolito
deps: update histogram to 0.11.7
25 май 2023, 10:44
25 май 2023, 10:44
dff00ed
Код
Авторство
О чём код?
/** * hdr_malloc.h * Written by Filipe Oliveira and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * Allocator selection. * * This file is used in order to change the HdrHistogram allocator at compile time. * Just define the following defines to what you want to use. Also add * the include of your alternate allocator if needed (not needed in order * to use the default libc allocator). */ #ifndef HDR_MALLOC_H__ #define HDR_MALLOC_H__ #define hdr_malloc malloc #define hdr_calloc calloc #define hdr_realloc realloc #define hdr_free free #endif