Files
tinygo/src/os/file_posix.go
T
2023-01-12 15:58:08 +01:00

11 lines
170 B
Go

package os
import (
"time"
)
// Chtimes is a stub, not yet implemented
func Chtimes(name string, atime time.Time, mtime time.Time) error {
return ErrNotImplemented
}