aboutsummaryrefslogtreecommitdiff
path: root/tests/matrix/atime_darwin+freebsd.go
blob: 43db0d54bacaac90009d33c840d6187cae0c6108 (plain)
1
2
3
4
5
6
7
8
9
10
11
//go:build darwin || freebsd

package matrix

import (
	"syscall"
)

func extractAtimeMtime(st syscall.Stat_t) [2]syscall.Timespec {
	return [2]syscall.Timespec{st.Atimespec, st.Mtimespec}
}