github.com/mtsmfm/go/src@v0.0.0-20221020090648-44bdcb9f8fde/path/filepath/symlink_unix.go (about)

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