mirror of
https://github.com/golang/sys.git
synced 2026-02-09 04:06:04 +03:00
Fixes golang/go#36300 Change-Id: I42692b47135870b52a26eb9662ca54648c9cfaf2 Reviewed-on: https://go-review.googlesource.com/c/sys/+/212459 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Keith Randall <khr@golang.org>
12 lines
300 B
Go
12 lines
300 B
Go
// Copyright 2019 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.
|
|
|
|
// +build darwin,arm,!go1.12
|
|
|
|
package unix
|
|
|
|
func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
|
|
return 0, ENOSYS
|
|
}
|