mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 15:32:16 +00:00
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
|
// Re-export for now, so there's just one source file being worked on
|
||
|
|
||
|
export {
|
||
|
allocate_memory,
|
||
|
free_memory
|
||
|
} from "../../../examples/tlsf/assembly/tlsf";
|
||
|
|
||
|
export function reset_memory(): void {
|
||
|
throw new Error("not supported");
|
||
|
}
|