blob: 3ed58e4bf96d8ed6ea3c7f3471d0b2d4fcf1665d [file] [log] [blame]
// +build windows
package initwd
// no syscall.Stat_t on windows, return 0 for inodes
func inode(path string) (uint64, error) {
return 0, nil
}