Codebase list golang-github-vbatts-go-mtree / e5611996-cc94-47bb-9115-c36579ed8328/main stat_windows.go
e5611996-cc94-47bb-9115-c36579ed8328/main

Tree @e5611996-cc94-47bb-9115-c36579ed8328/main (Download .tar.gz)

stat_windows.go @e5611996-cc94-47bb-9115-c36579ed8328/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
}