k3s/vendor/github.com/karrick/godirwalk/withIno.go

10 lines
126 B
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
// +build darwin linux
package godirwalk
import "syscall"
func inoFromDirent(de *syscall.Dirent) uint64 {
return de.Ino
}