Codebase list golang-github-vbatts-go-mtree / b37d6dc7-7334-4ece-84e6-4b44d0746757/upstream stat_windows.go
b37d6dc7-7334-4ece-84e6-4b44d0746757/upstream

Tree @b37d6dc7-7334-4ece-84e6-4b44d0746757/upstream (Download .tar.gz)

stat_windows.go @b37d6dc7-7334-4ece-84e6-4b44d0746757/upstream

1cf0881
 
 
 
 
 
 
 
 
 
 
 
// +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
}