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

Remove archive/stat_unsupported.go because it is not used
Upstream-commit: 2f292a97de79a4fac698c91e328c06ea711b3632
Component: engine
This commit is contained in:
unclejack
2014-04-07 19:50:31 +03:00

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
}