aboutsummaryrefslogtreecommitdiff
path: root/tests/defaults/getdents_other.go
blob: c0552a8644f9a1a8c0b40c07c8c7d100a1a0c5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
//go:build !linux

package defaults

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

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