mirror of
https://github.com/containers/podman.git
synced 2025-11-14 01:57:58 +08:00
Note that the bud-logfile-with-split-logfile-by-platform test is skipped on the remote client (see #14544). Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
9 lines
327 B
Go
9 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")
|
|
}
|