stdlib beginnings (heap alloc)

This commit is contained in:
2026-07-01 22:36:03 +02:00
parent 870f946b52
commit 78fb661d1a
5 changed files with 147 additions and 64 deletions
+6
View File
@@ -0,0 +1,6 @@
malloc c_func(size usize) ?*mut u8
free c_func(ptr ?*mut u8) void
alloc func(size usize) ?*mut u8 {
return malloc(size)
}