mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-04-27 13:12:47 +00:00
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()
|
|
}
|