github.com/squaremo/docker@v1.3.2-0.20150516120342-42cfc9554972/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 }