mirror of
https://github.com/docker/docs.git
synced 2026-03-28 14:58:53 +07:00
11 lines
247 B
Go
11 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
|
|
}
|