summaryrefslogtreecommitdiff
path: root/src/core/page_allocator.h
blob: f591d89a06b5792dc59f8a0414b7f96f921bcb5c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef SAND_PAGE_ALLOCATOR_H
#define SAND_PAGE_ALLOCATOR_H

// This module defines an allocator (i.e. an implementation of `SandAllocator`)
// which allocates virtual memory pages.

#include "allocator.h"

SandAllocator *sand_get_page_allocator(void);

#endif