lib: add libc and micro libc

This commit is contained in:
2026-02-19 19:28:50 +00:00
parent 9cc60cf3f1
commit ba455059ac
22 changed files with 9868 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#ifndef UNISTD_H_
#define UNISTD_H_
#include <stdint.h>
extern void *sbrk(intptr_t increment);
#endif