mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07: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
|
|
}
|