#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_get_std_allocator(void); #endif