Files
arena-allocator/include/alloc_backend.h
2023-06-02 18:06:27 +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