#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