Working port of Little FS

This commit is contained in:
2025-08-16 20:35:00 +02:00
parent 2b0566c56f
commit 8da890e388
20 changed files with 332 additions and 19 deletions

10
kernel/std/stdlib.c Normal file
View File

@ -0,0 +1,10 @@
#include <stdlib.h>
#include "dlmalloc/malloc.h"
void *malloc(size_t size) {
return dlmalloc(size);
}
void free(void *ptr) {
dlfree(ptr);
}