aboutsummaryrefslogtreecommitdiff
path: root/tests/defaults/getdents_linux.go
blob: 57956ce46d3464276fec515c8c0b50c732051806 (plain)
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)
}