mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
10 lines
129 B
Go
10 lines
129 B
Go
//go:build !linux || !(amd64 || arm64 || riscv64)
|
|
|
|
package vfs
|
|
|
|
import "os"
|
|
|
|
func osBatchAtomic(*os.File) bool {
|
|
return false
|
|
}
|