aboutsummaryrefslogtreecommitdiff
path: root/src/bolt_linux.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-10-26 13:24:52 -0300
committerEuAndreh <eu@euandre.org>2024-10-26 13:24:52 -0300
commitc7e2dea6f6148d0972c0b1f2795910c9a24ac27a (patch)
tree9dbcd8906cb8421b08cf3d91ead7e43b30077231 /src/bolt_linux.go
parentMove code to src/ and tests/ (diff)
downloaddedo-c7e2dea6f6148d0972c0b1f2795910c9a24ac27a.tar.gz
dedo-c7e2dea6f6148d0972c0b1f2795910c9a24ac27a.tar.xz
Normalize structure following other projects
Diffstat (limited to 'src/bolt_linux.go')
-rw-r--r--src/bolt_linux.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/bolt_linux.go b/src/bolt_linux.go
deleted file mode 100644
index 2b67666..0000000
--- a/src/bolt_linux.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package bolt
-
-import (
- "syscall"
-)
-
-// fdatasync flushes written data to a file descriptor.
-func fdatasync(db *DB) error {
- return syscall.Fdatasync(int(db.file.Fd()))
-}