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

View File

@ -0,0 +1,9 @@
#ifndef STD_STDLIB_H_
#define STD_STDLIB_H_
#include <stddef.h>
void *malloc(size_t size);
void free(void *ptr);
#endif // STD_STDLIB_H_