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