]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_unsupported.go
provider: Ensured Go 1.11 in TravisCI and README
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / fsouza / go-dockerclient / external / github.com / docker / docker / pkg / system / utimes_unsupported.go
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 }