blob: 540d6f7691250e20b4103bd62acd5b84c1a124b5 [file] [log] [blame]
package fs
import "errors"
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
return errors.New("mount is not implemented on darwin")
}