goadb/access_unix.go
Mandar Limaye daaa0fa467 Add conditional build files for unix.Access.
This will allow library to be built on windows.
2016-08-09 12:07:21 -05:00

10 lines
164 B
Go

// +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)
}