mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-05-30 03:02:50 +00:00
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.
10 lines
99 B
Go
10 lines
99 B
Go
// +build !linux
|
|
|
|
package bolt
|
|
|
|
import "os"
|
|
|
|
func fdatasync(f *os.File) error {
|
|
return f.Sync()
|
|
}
|