elysium/stdlib/alloc.lang

10 lines
82 B
Plaintext
Raw Normal View History

2024-03-29 15:16:00 +01:00
module alloc;
u64 alloc(u64 size) {
return 0u64;
}
void free(u64 address) {
}