diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-05-05 07:56:54 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-05-05 07:56:54 -0600 |
commit | c3903d38a10fda3c9a366d62705e06ddc558eb2d (patch) | |
tree | 504e0dcfc35536f7f9023aca59895c653bf68bee /syscall.go | |
parent | Merge pull request #152 from benbjohnson/remove-bolt-set (diff) | |
download | dedo-c3903d38a10fda3c9a366d62705e06ddc558eb2d.tar.gz dedo-c3903d38a10fda3c9a366d62705e06ddc558eb2d.tar.xz |
Consolidate code for clarity.
This commit consolidates some of the smaller files into some of the larger files.
The smaller files cluttered the file tree and made it harder to see the logical
groupings of structs.
Diffstat (limited to 'syscall.go')
-rw-r--r-- | syscall.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/syscall.go b/syscall.go deleted file mode 100644 index c3a1bb5..0000000 --- a/syscall.go +++ /dev/null @@ -1,9 +0,0 @@ -// +build !linux - -package bolt - -import "os" - -func fdatasync(f *os.File) error { - return f.Sync() -} |