Move header files to include/

This commit is contained in:
olemorud
2023-06-02 18:06:27 +02:00
committed by Ole Morud
parent 529955dbfb
commit 51feaf1d00
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