mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-05-01 13:13:32 +00:00
11 lines
119 B
Go
11 lines
119 B
Go
package bolt
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
func fdatasync(f *os.File) error {
|
|
return syscall.Fdatasync(int(f.Fd()))
|
|
}
|