diff --git a/archive/stat_unsupported.go b/archive/stat_unsupported.go deleted file mode 100644 index 004fa0f0a4..0000000000 --- a/archive/stat_unsupported.go +++ /dev/null @@ -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 -}