gotosocial/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_other.go

10 lines
200 B
Go
Raw Normal View History

//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)
}