Codebase list golang-github-vbatts-go-mtree / 42384a33-6995-461d-bbed-bce6e0446a91/upstream stat_windows.go
42384a33-6995-461d-bbed-bce6e0446a91/upstream

Tree @42384a33-6995-461d-bbed-bce6e0446a91/upstream (Download .tar.gz)

stat_windows.go @42384a33-6995-461d-bbed-bce6e0446a91/upstreamraw · history · blame

// +build windows

package mtree

import "os"

func statIsUID(stat os.FileInfo, uid int) bool {
	return false
}
func statIsGID(stat os.FileInfo, uid int) bool {
	return false
}