WordPress Version: 4.9
/**
* Deprecated functionality to clear the global post cache.
*
* @since MU (3.0.0)
* @deprecated 3.0.0 Use clean_post_cache()
* @see clean_post_cache()
*
* @param int $post_id Post ID.
*/
function clear_global_post_cache($post_id)
{
_deprecated_function(__FUNCTION__, '3.0.0', 'clean_post_cache()');
}