fix various issues

Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
Folling 2024-01-13 23:46:33 +01:00 committed by Folling
parent 3c250702b9
commit c289344880
No known key found for this signature in database
12 changed files with 33 additions and 50 deletions

7
src/global.cpp Normal file
View file

@ -0,0 +1,7 @@
#include "ikarus/global.h"
#include <cstdlib>
void ikarus_free(void * ptr) {
std::free(ptr);
}