utimes_unsupported.go 211 B

12345678910
  1. // +build !linux,!freebsd
  2. package system
  3. import "syscall"
  4. // LUtimesNano is only supported on linux and freebsd.
  5. func LUtimesNano(path string, ts []syscall.Timespec) error {
  6. return ErrNotSupportedPlatform
  7. }