Loading...
Searching...
No Matches
3#ifndef DATA_STRUCTURE_MEMORY_ALLOCATOR_H
4#define DATA_STRUCTURE_MEMORY_ALLOCATOR_H
6#ifdef USE_MEMORY_ALLOCATOR
7 #include "memory_allocator.h"
8 #define DATA_STRUCTURE_MALLOC(size) get_current_malloc()(size)
9 #define DATA_STRUCTURE_FREE(ptr) get_current_free()(ptr)
12 #define DATA_STRUCTURE_MALLOC(size) malloc(size)
13 #define DATA_STRUCTURE_FREE(ptr) free(ptr)