github.com/mephux/docker@v1.6.0-rc5/pkg/system/utimes_unsupported.go (about)

     1  // +build !linux,!freebsd,!darwin
     2  
     3  package system
     4  
     5  import "syscall"
     6  
     7  func LUtimesNano(path string, ts []syscall.Timespec) error {
     8  	return ErrNotSupportedPlatform
     9  }
    10  
    11  func UtimesNano(path string, ts []syscall.Timespec) error {
    12  	return ErrNotSupportedPlatform
    13  }