bbolt/bolt.go
Ben Johnson c3903d38a1 Consolidate code for clarity.
This commit consolidates some of the smaller files into some of the larger files.
The smaller files cluttered the file tree and made it harder to see the logical
groupings of structs.
2014-05-05 07:56:54 -06:00

10 lines
99 B
Go

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