mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
10 lines
157 B
Go
10 lines
157 B
Go
//go:build !linux && (!darwin || sqlite3_flock)
|
|
|
|
package vfs
|
|
|
|
import "os"
|
|
|
|
func osSync(file *os.File, fullsync, dataonly bool) error {
|
|
return file.Sync()
|
|
}
|