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