10 lines
118 B
C
10 lines
118 B
C
|
|
#ifndef ALLOC_BACKEND_H
|
|
#define ALLOC_BACKEND_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void* call_alloc_backend(size_t size);
|
|
|
|
#endif
|