mount_linux.go 185 B

1234567
  1. package aufs
  2. import "syscall"
  3. func mount(source string, target string, fstype string, flags uintptr, data string) error {
  4. return syscall.Mount(source, target, fstype, flags, data)
  5. }