1/* @title: Simple allocator */
2#include <stddef.h>
3
4struct vas;
5void *simple_alloc(struct vas *space, size_t size);
6void simple_free(struct vas *space, void *ptr, size_t size);
7