github.com/squaremo/docker@v1.3.2-0.20150516120342-42cfc9554972/pkg/system/utimes_darwin.go (about) 1 package system 2 3 import "syscall" 4 5 func LUtimesNano(path string, ts []syscall.Timespec) error { 6 return ErrNotSupportedPlatform 7 } 8 9 func UtimesNano(path string, ts []syscall.Timespec) error { 10 return syscall.UtimesNano(path, ts) 11 }