mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
add a stub for os.Chtimes
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user