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

Tree @fresh-snapshots/upstream (Download .tar.gz)

lchtimes_unsupported.go @fresh-snapshots/upstreamraw · history · blame

//go:build windows
// +build windows

package mtree

import (
	"time"
)

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