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,13 @@
#ifndef STDLIB_H_
#define STDLIB_H_
#include <stddef.h>
extern void abort(void);
extern void *malloc(size_t count);
extern void *calloc(size_t count, size_t size);
extern void *realloc(void *p, size_t count);
extern void free(void *p);
#endif