mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-04 12:41:42 +00:00
12 lines
212 B
Go
12 lines
212 B
Go
package archive
|
|
|
|
import "syscall"
|
|
|
|
func getLastAccess(stat *syscall.Stat_t) syscall.Timespec {
|
|
return stat.Atimespec
|
|
}
|
|
|
|
func getLastModification(stat *syscall.Stat_t) syscall.Timespec {
|
|
return stat.Mtimespec
|
|
}
|