mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
55885daa56
Addresses #14756 Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
7 lines
185 B
Go
7 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)
|
|
}
|