Codebase list golang-github-vbatts-go-mtree / upstream/0.4.2 lchtimes_unsupported.go
upstream/0.4.2

Tree @upstream/0.4.2 (Download .tar.gz)

lchtimes_unsupported.go @upstream/0.4.2raw · history · blame

// +build windows

package mtree

import (
	"time"
)

func lchtimes(name string, atime time.Time, mtime time.Time) error {
	return nil
}