mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
Addresses #14756 Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com> Upstream-commit: 55885daa56a0278ed5b412497b3bf99f52d6c52e Component: engine
8 lines
185 B
Go
8 lines
185 B
Go
package aufs
|
|
|
|
import "syscall"
|
|
|
|
func mount(source string, target string, fstype string, flags uintptr, data string) error {
|
|
return syscall.Mount(source, target, fstype, flags, data)
|
|
}
|