mirror of
https://github.com/mjl-/mox.git
synced 2025-01-14 17:36:27 +03:00
9 lines
170 B
Go
9 lines
170 B
Go
|
// +build !windows,!plan9,!linux,!openbsd
|
||
|
|
||
|
package bbolt
|
||
|
|
||
|
// fdatasync flushes written data to a file descriptor.
|
||
|
func fdatasync(db *DB) error {
|
||
|
return db.file.Sync()
|
||
|
}
|