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