aboutsummaryrefslogtreecommitdiff
path: root/src/path/filepath/symlink_unix.go
blob: d20e63a987e9ad7a9986c5ecc05b4db5f92beb74 (plain)
1
2
3
4
5
6
7
// +build !windows

package filepath

func evalSymlinks(path string) (string, error) {
	return walkSymlinks(path)
}