Browse Source

Merge pull request #5038 from kzys/remove-archive-stat

Remove archive/stat_unsupported.go because it is not used
unclejack 11 years ago
parent
commit
2f292a97de
1 changed files with 0 additions and 21 deletions
  1. 0 21
      archive/stat_unsupported.go

+ 0 - 21
archive/stat_unsupported.go

@@ -1,21 +0,0 @@
-// +build !linux !amd64
-
-package archive
-
-import "syscall"
-
-func getLastAccess(stat *syscall.Stat_t) syscall.Timespec {
-	return syscall.Timespec{}
-}
-
-func getLastModification(stat *syscall.Stat_t) syscall.Timespec {
-	return syscall.Timespec{}
-}
-
-func LUtimesNano(path string, ts []syscall.Timespec) error {
-	return ErrNotImplemented
-}
-
-func UtimesNano(path string, ts []syscall.Timespec) error {
-	return ErrNotImplemented
-}