github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/pkg/ctime/ctime_unsupported.go (about)

     1  // +build !linux
     2  
     3  package ctime
     4  
     5  import (
     6  	"os"
     7  	"time"
     8  )
     9  
    10  func created(fi os.FileInfo) time.Time {
    11  	return fi.ModTime()
    12  }