mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-21 13:14:59 -07:00
15 lines
328 B
Odin
15 lines
328 B
Odin
//+build !js
|
|
package wasm_js_interface
|
|
|
|
import "core:mem"
|
|
|
|
PAGE_SIZE :: 64 * 1024
|
|
page_alloc :: proc(page_count: int) -> (data: []byte, err: mem.Allocator_Error) {
|
|
panic("vendor:wasm/js not supported on non-js targets")
|
|
}
|
|
|
|
page_allocator :: proc() -> mem.Allocator {
|
|
panic("vendor:wasm/js not supported on non-js targets")
|
|
}
|
|
|