diff options
Diffstat (limited to 'src/core/std_allocator.h')
-rw-r--r-- | src/core/std_allocator.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/std_allocator.h b/src/core/std_allocator.h new file mode 100644 index 0000000..6170272 --- /dev/null +++ b/src/core/std_allocator.h @@ -0,0 +1,11 @@ +#ifndef SAND_STD_ALLOCATOR_H +#define SAND_STD_ALLOCATOR_H + +// This module defines an allocator (i.e. an implementation of `SandAllocator`) +// which simply passes allocations to libc's sallocator. + +#include "allocator.h" + +SandAllocator sand_new_std_allocator(); + +#endif |