github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/src/os/file_posix.go (about)

     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  }