Move header files to include/

This commit is contained in:
olemorud
2023-06-02 18:06:27 +02:00
parent 680936296f
commit bf73807e40
4 changed files with 2 additions and 1 deletions

9
include/alloc_backend.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef ALLOC_BACKEND_H
#define ALLOC_BACKEND_H
#include <stddef.h>
void* call_alloc_backend(size_t size);
#endif