2014-06-17 23:19:42 +00:00
|
|
|
// +build !linux,!freebsd,!darwin
|
2014-02-21 09:12:25 +00:00
|
|
|
|
|
|
|
package system
|
|
|
|
|
|
|
|
import "syscall"
|
|
|
|
|
|
|
|
func LUtimesNano(path string, ts []syscall.Timespec) error {
|
|
|
|
return ErrNotSupportedPlatform
|
|
|
|
}
|
|
|
|
|
|
|
|
func UtimesNano(path string, ts []syscall.Timespec) error {
|
|
|
|
return ErrNotSupportedPlatform
|
|
|
|
}
|