mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00

full diff: https://github.com/moby/sys/compare/mount/v0.3.0...mount/v0.3.1 - mount: fix unused/deadcode warnings on Mac - mount: bump mountinfo to v0.6.0 - Makefile: rm .SHELLFLAGS, add set -e Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
8 lines
327 B
Go
8 lines
327 B
Go
//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")
|
|
}
|