aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/malloc/malloc.h
blob: 2b3efbfd008972f1fbda1eedac655262c782ec87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <cstddef>

////////////////////////////////////////////////////////////////////////////////

extern "C" size_t malloc_usable_size(void* ptr) noexcept;

extern "C" size_t nallocx(size_t size, int flags) noexcept;

void* aligned_malloc(size_t size, size_t alignment);

////////////////////////////////////////////////////////////////////////////////