Docker-DCO-1.1-Signed-off-by: Kato Kazuyoshi <kato.kazuyoshi@gmail.com> (github: kzys) Upstream-commit: 3754fdd7caae423b606c6fb5160683534a830a1a Component: engine
12 lines
247 B
Go
12 lines
247 B
Go
// +build !linux,!freebsd linux,!amd64 freebsd,!cgo
|
|
|
|
package mount
|
|
|
|
func mount(device, target, mType string, flag uintptr, data string) error {
|
|
panic("Not implemented")
|
|
}
|
|
|
|
func unmount(target string, flag int) error {
|
|
panic("Not implemented")
|
|
}
|