]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_unsupported.go
Transfer of provider code
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / fsouza / go-dockerclient / external / github.com / docker / docker / pkg / system / utimes_unsupported.go
CommitLineData
9b12e4fe
JC
1// +build !linux,!freebsd,!darwin
2
3package system
4
5import "syscall"
6
7// LUtimesNano is not supported on platforms other than linux, freebsd and darwin.
8func LUtimesNano(path string, ts []syscall.Timespec) error {
9 return ErrNotSupportedPlatform
10}