mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
10 lines
155 B
Go
10 lines
155 B
Go
//go:build !(linux || darwin) || sqlite3_flock
|
|
|
|
package vfs
|
|
|
|
import "os"
|
|
|
|
func osSync(file *os.File, _ OpenFlag, _ SyncFlag) error {
|
|
return file.Sync()
|
|
}
|