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