mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
40b77af234
Signed-off-by: Darren Stahl <darst@microsoft.com>
10 lines
247 B
Go
10 lines
247 B
Go
// +build !linux,!freebsd,!darwin
|
|
|
|
package system
|
|
|
|
import "syscall"
|
|
|
|
// LUtimesNano is not supported on platforms other than linux, freebsd and darwin.
|
|
func LUtimesNano(path string, ts []syscall.Timespec) error {
|
|
return ErrNotSupportedPlatform
|
|
}
|