1// +build !windows
2
3package main
4
5import "github.com/moby/sys/mount"
6
7func mountWrapper(device, target, mType, options string) error {
8	return mount.Mount(device, target, mType, options)
9}
10