bbolt/bolt.go

14 lines
121 B
Go

// +build !linux
package bolt
import (
"os"
)
var odirect int
func fdatasync(f *os.File) error {
return f.Sync()
}