Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / libgo / go / path / filepath / path_plan9.go
index 59a5812..0c938d8 100644 (file)
@@ -11,10 +11,10 @@ func IsAbs(path string) bool {
        return strings.HasPrefix(path, "/") || strings.HasPrefix(path, "#")
 }
 
-// VolumeName returns the leading volume name on Windows.
-// It returns "" elsewhere.
-func VolumeName(path string) string {
-       return ""
+// volumeNameLen returns length of the leading volume name on Windows.
+// It returns 0 elsewhere.
+func volumeNameLen(path string) int {
+       return 0
 }
 
 // HasPrefix exists for historical compatibility and should not be used.