moby--moby/daemon/graphdriver/aufs/mount_linux.go

8 lines
185 B
Go
Raw Normal View History

package aufs
import "syscall"
2013-11-26 18:50:53 +00:00
func mount(source string, target string, fstype string, flags uintptr, data string) error {
return syscall.Mount(source, target, fstype, flags, data)
}