Codebase list golang-github-vbatts-go-mtree / 456f9217-1bd0-4d0b-9c5a-088114e223d6/upstream stat_windows.go
456f9217-1bd0-4d0b-9c5a-088114e223d6/upstream

Tree @456f9217-1bd0-4d0b-9c5a-088114e223d6/upstream (Download .tar.gz)

stat_windows.go @456f9217-1bd0-4d0b-9c5a-088114e223d6/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
}