libcute 0.1
Loading...
Searching...
No Matches
wasmallocator.h
Go to the documentation of this file.
1#pragma once
2
5#include "memory/allocator.h"
6
7#if CU_PLAT_WASM
8
10#define CU_WASM_PAGE_SIZE 65536
11
12static inline void cu_wasm_memory_grow(size_t pages) {
13 __builtin_wasm_memory_grow(0, pages);
14}
15
17cu_Allocator cu_Allocator_WasmAllocator(void);
18
19#endif /* CU_PLAT_WASM */
Definition allocator.h:24