stdlib beginnings (heap alloc)
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user