mirror of https://github.com/k3s-io/k3s
10 lines
147 B
Go
10 lines
147 B
Go
|
// +build dragonfly
|
||
|
|
||
|
package godirwalk
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func reclen(de *syscall.Dirent) uint64 {
|
||
|
return (16 + uint64(de.Namlen) + 1 + 7) &^ 7
|
||
|
}
|