blob: 05c667fa6985c3389ae46e8ce2479dc176349d97 [file] [log] [blame]
// +build !windows
package main
import "github.com/moby/sys/mount"
func mountWrapper(device, target, mType, options string) error {
return mount.Mount(device, target, mType, options)
}