Files
arena-allocator/src/alloc_backend.h
2023-05-14 23:57:05 +02:00

10 lines
118 B
C

#ifndef ALLOC_BACKEND_H
#define ALLOC_BACKEND_H
#include <stddef.h>
void* call_alloc_backend(size_t size);
#endif