dip/vendor/github.com/karrick/godirwalk/reclenFromReclen.go

10 lines
173 B
Go
Raw Normal View History

2020-05-24 18:42:01 +02:00
// +build nacl linux js solaris aix darwin freebsd netbsd openbsd
package godirwalk
import "syscall"
func reclen(de *syscall.Dirent) uint64 {
return uint64(de.Reclen)
}