blob: b69d62bd65b4c06e1fe7fd225e913fdb32debb69 (
plain)
1
2
3
4
5
6
7
8
|
//go:build (!linux && !freebsd && !openbsd && !windows && !darwin) || (freebsd && !cgo) || (openbsd && !cgo)
// +build !linux,!freebsd,!openbsd,!windows,!darwin freebsd,!cgo openbsd,!cgo
package mount
func mount(device, target, mType string, flag uintptr, data string) error {
panic("cgo required on freebsd and openbsd")
}
|