mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 22:19:14 +00:00
10 lines
200 B
Go
10 lines
200 B
Go
|
|
//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)
|
||
|
|
}
|