]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob
50c3a04364d233431f7e1aca2206f26f01d4c031
[github/fretlink/terraform-provider-statuscake.git] /
1 // +build !linux,!freebsd,!darwin
2
3 package system
4
5 import "syscall"
6
7 // LUtimesNano is not supported on platforms other than linux, freebsd and darwin.
8 func LUtimesNano(path string, ts []syscall.Timespec) error {
9 return ErrNotSupportedPlatform
10 }