1 2 3 4 5 6 7 8 9
// +build !linux package bolt import "os" func fdatasync(f *os.File) error { return f.Sync() }