GoPLS Viewer

Home|gopls/internal/fastwalk/fastwalk_dirent_ino.go
1// Copyright 2016 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//go:build (linux || (darwin && !cgo)) && !appengine
6// +build linux darwin,!cgo
7// +build !appengine
8
9package fastwalk
10
11import "syscall"
12
13func direntInode(dirent *syscall.Direntuint64 {
14    return dirent.Ino
15}
16
MembersX
Members
X