WordPress Version: 4.6
/**
* Print the permalink to the RSS feed.
*
* @since 0.71
* @deprecated 2.3.0 Use the_permalink_rss()
* @see the_permalink_rss()
*
* @param string $deprecated
*/
function permalink_single_rss($deprecated = '')
{
_deprecated_function(__FUNCTION__, '2.3.0', 'the_permalink_rss()');
the_permalink_rss();
}