lib: micro-c: implement sbrk emulation and dlmalloc

This commit is contained in:
2026-02-23 18:46:02 +00:00
parent 562a729c25
commit c39e0b206a
6 changed files with 112 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
#ifndef ERRNO_H_
#define ERRNO_H_
#define EINVAL 1
#define ENOMEM 2
#endif