diff options
Diffstat (limited to 'src/path/filepath/path_plan9.go')
| -rw-r--r-- | src/path/filepath/path_plan9.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/path/filepath/path_plan9.go b/src/path/filepath/path_plan9.go index ec792fc831..453206aee3 100644 --- a/src/path/filepath/path_plan9.go +++ b/src/path/filepath/path_plan9.go @@ -6,6 +6,10 @@ package filepath import "strings" +func isLocal(path string) bool { + return unixIsLocal(path) +} + // IsAbs reports whether the path is absolute. func IsAbs(path string) bool { return strings.HasPrefix(path, "/") || strings.HasPrefix(path, "#") |
