mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7e420ad850
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
15 lines
424 B
Go
15 lines
424 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
|
|
}
|
|
|
|
// UtimesNano is not supported on platforms other than linux, freebsd and darwin.
|
|
func UtimesNano(path string, ts []syscall.Timespec) error {
|
|
return ErrNotSupportedPlatform
|
|
}
|