2020-05-01 15:35:47 +02:00
|
|
|
// Copyright 2018 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-08-31 18:49:08 +02:00
|
|
|
//go:build darwin || freebsd || openbsd || netbsd
|
2020-05-01 15:35:47 +02:00
|
|
|
// +build darwin freebsd openbsd netbsd
|
|
|
|
|
|
|
|
package fastwalk
|
|
|
|
|
|
|
|
import "syscall"
|
|
|
|
|
|
|
|
func direntNamlen(dirent *syscall.Dirent) uint64 {
|
|
|
|
return uint64(dirent.Namlen)
|
|
|
|
}
|