aboutsummaryrefslogtreecommitdiff
path: root/sync_std.go
blob: d858b234f44f86443c91dd60b93695d395e074bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// +build !linux

package bolt

import "os"

// Fall back to syncing metadata too.
func fdatasync(f *os.File) error {
	return f.Sync()
}