Skip to content

Commit 776dabb

Browse files
chengjoeydeadprogram
authored andcommitted
add a stub for os.Chtimes
1 parent e11df5c commit 776dabb

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/os/file_posix.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package os
2+
3+
import (
4+
"time"
5+
)
6+
7+
// Chtimes is a stub, not yet implemented
8+
func Chtimes(name string, atime time.Time, mtime time.Time) error {
9+
return ErrNotImplemented
10+
}

0 commit comments

Comments
 (0)