mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 15:32:16 +00:00
12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
|
export function allocate_memory(size: usize): usize {
|
||
|
throw new Error("not supported");
|
||
|
}
|
||
|
|
||
|
export function free_memory(ptr: usize): void {
|
||
|
throw new Error("not supported");
|
||
|
}
|
||
|
|
||
|
export function reset_memory(): void {
|
||
|
throw new Error("not supported");
|
||
|
}
|