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

Remove archive/stat_unsupported.go because it is not used
This commit is contained in:
unclejack 2014-04-07 19:50:31 +03:00
commit 2f292a97de
1 changed files with 0 additions and 21 deletions

View File

@ -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
}