2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-20 11:40:29 +00:00

9 lines
170 B
Go
Raw Normal View History

2022-03-10 10:44:48 +01:00
// +build !windows,!plan9,!linux,!openbsd
package bbolt
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return db.file.Sync()
}