2014-06-17 23:19:42 +00:00
|
|
|
// +build !linux,!freebsd,!darwin
|
2014-02-21 09:12:25 +00:00
|
|
|
|
|
|
|
package system
|
|
|
|
|
|
|
|
import "syscall"
|
|
|
|
|
2015-07-28 16:13:12 +00:00
|
|
|
// LUtimesNano is not supported on platforms other than linux, freebsd and darwin.
|
2014-02-21 09:12:25 +00:00
|
|
|
func LUtimesNano(path string, ts []syscall.Timespec) error {
|
|
|
|
return ErrNotSupportedPlatform
|
|
|
|
}
|