File: getdents_linux.go

package info (click to toggle)
gocryptfs 2.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,132 kB
  • sloc: sh: 1,091; ansic: 208; makefile: 88
file content (9 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
package defaults

import (
	"golang.org/x/sys/unix"
)

func getdents(fd int, buf []byte) (int, error) {
	return unix.Getdents(fd, buf)
}