mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +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)
|
||
|
}
|