add a stub for os.Chtimes

This commit is contained in:
joey
2023-01-12 13:40:53 +08:00
committed by Ron Evans
parent e11df5c212
commit 776dabb2c8
+10
View File
@@ -0,0 +1,10 @@
package os
import (
"time"
)
// Chtimes is a stub, not yet implemented
func Chtimes(name string, atime time.Time, mtime time.Time) error {
return ErrNotImplemented
}