goadb/access_unix.go

10 lines
164 B
Go
Raw Normal View History

// +build darwin freebsd linux netbsd openbsd
package adb
import "golang.org/x/sys/unix"
func access(path string) error {
return unix.Access(path, unix.X_OK)
}