From a10ce47f54a5c57292d11faec14e398f11b7ae4f Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Sun, 23 Mar 2014 08:59:45 -0700 Subject: [PATCH] Consolidate syscall files. --- sync_std.go => syscall.go | 1 - sync_linux.go => syscall_linux.go | 0 2 files changed, 1 deletion(-) rename sync_std.go => syscall.go (72%) rename sync_linux.go => syscall_linux.go (100%) diff --git a/sync_std.go b/syscall.go similarity index 72% rename from sync_std.go rename to syscall.go index d858b23..c3a1bb5 100644 --- a/sync_std.go +++ b/syscall.go @@ -4,7 +4,6 @@ package bolt import "os" -// Fall back to syncing metadata too. func fdatasync(f *os.File) error { return f.Sync() } diff --git a/sync_linux.go b/syscall_linux.go similarity index 100% rename from sync_linux.go rename to syscall_linux.go