aboutsummaryrefslogtreecommitdiff
path: root/wasm/malloc_other.go
blob: 5d915f89f32ebdebcc060732395376aefb8ea4fe (plain)
1
2
3
4
5
6
7
//go:build !wasip1

package wasm

func Malloc(size uint32) Buffer {
	panic("don't call this if you're not using WASI")
}