Signed-off-by: Darren Stahl <darst@microsoft.com> Upstream-commit: 40b77af234319f02029368732249c2de0babb380 Component: engine
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
|
|
}
|