Codebase list golang-github-vbatts-go-mtree / debian/latest lchtimes_unsupported.go
debian/latest

Tree @debian/latest (Download .tar.gz)

lchtimes_unsupported.go @debian/latestraw · history · blame

// +build windows

package mtree

import (
	"time"
)

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