ecd0006e80
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
11 lines
157 B
Go
11 lines
157 B
Go
// +build linux solaris
|
|
|
|
package storage
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func statTMtimeUnix(st unix.Stat_t) (int64, int64) {
|
|
return st.Mtim.Unix()
|
|
}
|