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