c7478a100c
Signed-off-by: Darren Stahl <darst@microsoft.com>
8 lines
181 B
Go
8 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
|
|
}
|