Files
arena-allocator/include/alloc_backend.h
2023-08-19 00:49:51 +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