2020-05-01 15:35:47 +02:00
|
|
|
// Copyright 2016 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 (linux || darwin) && !appengine
|
2020-05-01 15:35:47 +02:00
|
|
|
// +build linux darwin
|
|
|
|
// +build !appengine
|
|
|
|
|
|
|
|
package fastwalk
|
|
|
|
|
|
|
|
import "syscall"
|
|
|
|
|
|
|
|
func direntInode(dirent *syscall.Dirent) uint64 {
|
|
|
|
return uint64(dirent.Ino)
|
|
|
|
}
|