github.com/c0deoo1/golang1.5@v0.0.0-20220525150107-c87c805d4593/src/path/filepath/symlink_unix.go (about)

     1  // +build !windows
     2  
     3  package filepath
     4  
     5  func evalSymlinks(path string) (string, error) {
     6  	return walkSymlinks(path)
     7  }