1 2 3 4 5 6 7 8 9
// +build !windows package reload import "os" func sameFile(fi1, fi2 os.FileInfo) bool { return os.SameFile(fi1, fi2) }