1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
2019-01-11 16:44:42 -08:00

10 lines
125 B
Go

// +build !windows
package watcher
import "os"
func sameFile(fi1, fi2 os.FileInfo) bool {
return os.SameFile(fi1, fi2)
}