mirror of
https://github.com/clearlinux/docker.git
synced 2026-08-22 05:56:17 +00:00
40b77af234
Signed-off-by: Darren Stahl <darst@microsoft.com>
9 lines
181 B
Go
9 lines
181 B
Go
package system
|
|
|
|
import "syscall"
|
|
|
|
// LUtimesNano is not supported by darwin platform.
|
|
func LUtimesNano(path string, ts []syscall.Timespec) error {
|
|
return ErrNotSupportedPlatform
|
|
}
|