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