summaryrefslogtreecommitdiff
path: root/pkg/ctime/ctime_unsupported.go
blob: 32573135380b28205105fe59ac5ca322a6f6697d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +build !linux

package ctime

import (
	"os"
	"time"
)

func created(fi os.FileInfo) time.Time {
	return fi.ModTime()
}