Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / mvdan.cc / gofumpt@v0.0.0-20200802201014-ab5a8192947d / gofumports / internal / fastwalk / fastwalk_dirent_namlen_bsd.go
1 // Copyright 2018 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // +build darwin freebsd openbsd netbsd
6
7 package fastwalk
8
9 import "syscall"
10
11 func direntNamlen(dirent *syscall.Dirent) uint64 {
12         return uint64(dirent.Namlen)
13 }