Enable builds on OSX Upstream-commit: 7bc96aec7bf978e87cb87935bd55f85e2cb1664a Component: engine
10 lines
194 B
Go
10 lines
194 B
Go
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")
|
|
}
|