mount_darwin.go 209 B

123456789
  1. package aufs
  2. import "errors"
  3. const MsRemount = 0
  4. func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
  5. return errors.New("mount is not implemented on darwin")
  6. }