blob: 53ae9dee2f6c3e137adccd0327099f91fb0fcdd1 [file] [log] [blame]
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
}