summaryrefslogtreecommitdiff
path: root/vendor/github.com/moby/sys/mount/mounter_unsupported.go
blob: e7ff5bd9ffa659781ea9abe14a01f367d6f1de47 (plain)
1
2
3
4
5
6
7
// +build !linux,!freebsd,!openbsd,!windows freebsd,!cgo openbsd,!cgo

package mount

func mount(device, target, mType string, flag uintptr, data string) error {
	panic("cgo required on freebsd and openbsd")
}