summaryrefslogtreecommitdiff
path: root/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_other.go
blob: ded8da108748c84bea260064469fbae051974440 (plain)
1
2
3
4
5
6
7
8
9
//go:build !(unix || windows) || sqlite3_nosys

package alloc

import "github.com/tetratelabs/wazero/experimental"

func Virtual(cap, max uint64) experimental.LinearMemory {
	return Slice(cap, max)
}