bd11a269bc
Signed-off-by: allencloud <allen.sun@daocloud.io>
10 lines
211 B
Go
10 lines
211 B
Go
// +build !linux,!freebsd
|
|
|
|
package system
|
|
|
|
import "syscall"
|
|
|
|
// LUtimesNano is only supported on linux and freebsd.
|
|
func LUtimesNano(path string, ts []syscall.Timespec) error {
|
|
return ErrNotSupportedPlatform
|
|
}
|