build system refresh

This commit is contained in:
2026-07-16 16:09:12 -05:00
parent b588634253
commit 3246dbbd19
49 changed files with 185 additions and 203 deletions

8
rlibc/include/stdlib.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef RLIBC_STDLIB_H
#define RLIBC_STDLIB_H
#include <stddef.h>
void* malloc(size_t size);
#endif