github.com/jaegerpicker/docker@v0.7.7-0.20150325003727-22dba32b4dab/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 }