mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-08 21:13:39 +00:00
11 lines
170 B
Go
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
|
|
}
|