2016-03-22 04:37:00 +00:00
|
|
|
// +build !windows,!linux,!freebsd freebsd,!cgo
|
2014-03-20 15:52:12 +00:00
|
|
|
|
|
|
|
package mount
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
2015-07-21 17:49:42 +00:00
|
|
|
func parseMountTable() ([]*Info, error) {
|
2014-03-20 15:52:12 +00:00
|
|
|
return nil, fmt.Errorf("mount.parseMountTable is not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
|
|
|
|
}
|