summaryrefslogtreecommitdiff
path: root/src/core/std_allocator.h
blob: 617027295aa103fb8fcc53baeffad7e50767e82b (plain)
1
2
3
4
5
6
7
8
9
10
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