summaryrefslogtreecommitdiff
path: root/src/path/filepath/symlink_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/path/filepath/symlink_unix.go')
-rw-r--r--src/path/filepath/symlink_unix.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/path/filepath/symlink_unix.go b/src/path/filepath/symlink_unix.go
new file mode 100644
index 000000000..d20e63a98
--- /dev/null
+++ b/src/path/filepath/symlink_unix.go
@@ -0,0 +1,7 @@
+// +build !windows
+
+package filepath
+
+func evalSymlinks(path string) (string, error) {
+ return walkSymlinks(path)
+}