aboutsummaryrefslogtreecommitdiff
path: root/src/os/path_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/path_unix.go')
-rw-r--r--src/os/path_unix.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/os/path_unix.go b/src/os/path_unix.go
index 1c80fa91f8..0189bcd2a1 100644
--- a/src/os/path_unix.go
+++ b/src/os/path_unix.go
@@ -16,24 +16,6 @@ func IsPathSeparator(c uint8) bool {
return PathSeparator == c
}
-// basename removes trailing slashes and the leading directory name from path name.
-func basename(name string) string {
- i := len(name) - 1
- // Remove trailing slashes
- for ; i > 0 && name[i] == '/'; i-- {
- name = name[:i]
- }
- // Remove leading directory name
- for i--; i >= 0; i-- {
- if name[i] == '/' {
- name = name[i+1:]
- break
- }
- }
-
- return name
-}
-
// splitPath returns the base name and parent directory.
func splitPath(path string) (string, string) {
// if no better parent is found, the path is relative from "here"
@@ -69,7 +51,3 @@ func splitPath(path string) (string, string) {
return dirname, basename
}
-
-func volumeName(p string) string {
- return ""
-}