Codebase list golang-github-vbatts-go-mtree / 77f5491e-3a23-49b7-b573-678497ec993b/main stat_windows.go
77f5491e-3a23-49b7-b573-678497ec993b/main

Tree @77f5491e-3a23-49b7-b573-678497ec993b/main (Download .tar.gz)

stat_windows.go @77f5491e-3a23-49b7-b573-678497ec993b/main

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
}