summaryrefslogtreecommitdiff
path: root/pkg/ctime/ctime_linux_64.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/ctime/ctime_linux_64.go')
-rw-r--r--pkg/ctime/ctime_linux_64.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/pkg/ctime/ctime_linux_64.go b/pkg/ctime/ctime_linux_64.go
deleted file mode 100644
index 1251c1ded..000000000
--- a/pkg/ctime/ctime_linux_64.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// +build !arm,!386,linux
-
-package ctime
-
-import (
- "os"
- "syscall"
- "time"
-)
-
-func created(fi os.FileInfo) time.Time {
- st := fi.Sys().(*syscall.Stat_t)
- return time.Unix(st.Ctim.Sec, st.Ctim.Nsec)
-}