mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-05-02 21:50:16 +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()
|
|
}
|