mount_linux.go 196 B

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