2014-01-31 03:16:42 -07:00
|
|
|
// +build !linux !amd64
|
|
|
|
|
2013-11-28 00:22:47 -02:00
|
|
|
package archive
|
|
|
|
|
|
|
|
import "syscall"
|
|
|
|
|
|
|
|
func getLastAccess(stat *syscall.Stat_t) syscall.Timespec {
|
2014-03-10 13:25:00 -07:00
|
|
|
return syscall.Timespec{}
|
2013-11-28 00:22:47 -02:00
|
|
|
}
|
|
|
|
|
|
|
|
func getLastModification(stat *syscall.Stat_t) syscall.Timespec {
|
2014-03-10 13:25:00 -07:00
|
|
|
return syscall.Timespec{}
|
2013-11-28 00:22:47 -02:00
|
|
|
}
|
2013-12-13 15:43:50 +01:00
|
|
|
|
|
|
|
func LUtimesNano(path string, ts []syscall.Timespec) error {
|
2014-02-06 14:13:03 -08:00
|
|
|
return ErrNotImplemented
|
|
|
|
}
|
|
|
|
|
|
|
|
func UtimesNano(path string, ts []syscall.Timespec) error {
|
|
|
|
return ErrNotImplemented
|
2013-12-13 15:43:50 +01:00
|
|
|
}
|