k3s/vendor/github.com/karrick/godirwalk/withFileno.go
Darren Shepherd fa08d6076c Update vendor
2019-01-11 21:58:27 -07:00

10 lines
157 B
Go

// +build dragonfly freebsd openbsd netbsd
package godirwalk
import "syscall"
func inoFromDirent(de *syscall.Dirent) uint64 {
return uint64(de.Fileno)
}