blob: 0efb253003a80820447edd7e6d9ec21e689055dc [file] [log] [blame]
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)
}