mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 08:23:48 +03:00
9 lines
222 B
Go
9 lines
222 B
Go
//go:build !windows && !plan9 && !linux && !openbsd
|
|
// +build !windows,!plan9,!linux,!openbsd
|
|
|
|
package bbolt
|
|
|
|
// fdatasync flushes written data to a file descriptor.
|
|
func fdatasync(db *DB) error {
|
|
return db.file.Sync()
|
|
}
|