aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/path/filepath/path_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/path/filepath/path_unix.go')
-rw-r--r--src/pkg/path/filepath/path_unix.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pkg/path/filepath/path_unix.go b/src/pkg/path/filepath/path_unix.go
index 7aba0ab5b9..4e7d0d1b42 100644
--- a/src/pkg/path/filepath/path_unix.go
+++ b/src/pkg/path/filepath/path_unix.go
@@ -30,3 +30,7 @@ func splitList(path string) []string {
}
return strings.Split(path, string(ListSeparator))
}
+
+func abs(path string) (string, error) {
+ return unixAbs(path)
+}