blob: 937104ba3fd04f29449f61965e3a36e739b37409 [file] [log] [blame]
package aufs
import "golang.org/x/sys/unix"
func mount(source string, target string, fstype string, flags uintptr, data string) error {
return unix.Mount(source, target, fstype, flags, data)
}