blob: bfed4af0325ebd87a69595b43393a02f1b20ab26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//go:build !linux && !freebsd
// +build !linux,!freebsd
package system // import "github.com/docker/docker/pkg/system"
import "syscall"
// LUtimesNano is only supported on linux and freebsd.
func LUtimesNano(path string, ts []syscall.Timespec) error {
return ErrNotSupportedPlatform
}
|