water/syscalls_other.go

9 lines
205 B
Go

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