github.com/fcwu/docker@v1.4.2-0.20150115145920-2a69ca89f0df/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 }