mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 15:32:16 +00:00
23 lines
475 B
TypeScript
23 lines
475 B
TypeScript
/**
|
|
* @file System Memory Allocator
|
|
*
|
|
* Uses the environment's malloc and free implementations, i.e., when linking with other C-like
|
|
* programs that already provide these.
|
|
*/
|
|
|
|
declare function malloc(size: usize): usize;
|
|
declare function free(ptr: usize): void;
|
|
|
|
@global
|
|
export function allocate_memory(size: usize): usize {
|
|
return malloc(size);
|
|
}
|
|
|
|
@global
|
|
export function free_memory(ptr: usize): void {
|
|
free(ptr);
|
|
}
|
|
|
|
@global
|
|
export { reset_memory } from "./none";
|