mount_linux.go
e1b25e9b
 package docker
 
 import "syscall"
 
 func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
 	return syscall.Mount(source, target, fstype, flags, data)
 }