water/syscalls_other.go
2019-12-02 16:22:25 +00:00

9 lines
223 B
Go

// +build !linux,!darwin,!windows,!freebsd,!netbsd,!openbsd,!solaris,!illumos
package water
import "errors"
func openDev(config Config) (*Interface, error) {
return nil, errors.New("not implemented on this platform")
}