WordPress Version: 4.6
/**
* Retrieve drafts from other users.
*
* @deprecated 3.1.0 Use get_posts()
* @see get_posts()
*
* @param int $user_id User ID.
* @return array List of drafts from other users.
*/
function get_others_drafts($user_id)
{
_deprecated_function(__FUNCTION__, '3.1.0');
return get_others_unpublished_posts($user_id, 'draft');
}