f514bb46a5
Upstream-commit: 699a1074fb9cdf323044f8c132d7130f6a2945bc 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)
|
|
}
|