summaryrefslogtreecommitdiff
path: root/src/core/std_allocator.h
blob: 57d419ef8eb312d3e74a92bd19fe8669b9db1387 (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_get_std_allocator(void);

#endif