bolt/bolt.go

10 lines
99 B
Go

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