#ifndef ALLOC_H
#define ALLOC_H

#include <stddef.h>

void* alloc_or_crash(size_t size);
void* realloc_or_crash(void *mem, size_t new_size);

#endif