052ebaaf52
Upstream-commit: 035c1442424ee502118cdbf2ee2dddafcc0f01cd Component: engine
8 lines
191 B
Go
8 lines
191 B
Go
package aufs
|
|
|
|
import "syscall"
|
|
|
|
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
|
|
return syscall.Mount(source, target, fstype, flags, data)
|
|
}
|