Index: wp-admin/includes/deprecated.php
===================================================================
--- wp-admin/includes/deprecated.php	(revision 37941)
+++ wp-admin/includes/deprecated.php	(working copy)
@@ -842,6 +842,7 @@
  * @see WP_Screen::render_screen_meta()
  */
 function screen_meta( $screen ) {
+	_deprecated_function( __FUNCTION__, '3.3', 'WP_Screen::render_screen_meta()' );
 	$current_screen = get_current_screen();
 	$current_screen->render_screen_meta();
 }
@@ -1215,6 +1216,7 @@
  * @see get_screen_icon()
  */
 function screen_icon() {
+	_deprecated_function( __FUNCTION__, '3.8' );
 	echo get_screen_icon();
 }
 
@@ -1226,6 +1228,7 @@
  * @return string
  */
 function get_screen_icon() {
+	_deprecated_function( __FUNCTION__, '3.8' );
 	return '<!-- Screen icons are no longer used as of WordPress 3.8. -->';
 }
 
@@ -1235,7 +1238,9 @@
  * @since 2.5.0
  * @deprecated 3.8.0
  */
-function wp_dashboard_incoming_links_output() {}
+function wp_dashboard_incoming_links_output() {
+	_deprecated_function( __FUNCTION__, '3.8' );
+}
 
 /**
  * Deprecated dashboard secondary output.
@@ -1242,7 +1247,9 @@
  *
  * @deprecated 3.8.0
  */
-function wp_dashboard_secondary_output() {}
+function wp_dashboard_secondary_output() {
+	_deprecated_function( __FUNCTION__, '3.8' );
+}
 
 /**
  * Deprecated dashboard widget controls.
@@ -1250,7 +1257,9 @@
  * @since 2.7.0
  * @deprecated 3.8.0
  */
-function wp_dashboard_incoming_links() {}
+function wp_dashboard_incoming_links() {
+	_deprecated_function( __FUNCTION__, '3.8' );
+}
 
 /**
  * Deprecated dashboard incoming links control.
@@ -1257,7 +1266,9 @@
  *
  * @deprecated 3.8.0
  */
-function wp_dashboard_incoming_links_control() {}
+function wp_dashboard_incoming_links_control() {
+	_deprecated_function( __FUNCTION__, '3.8' );
+}
 
 /**
  * Deprecated dashboard plugins control.
@@ -1264,7 +1275,9 @@
  *
  * @deprecated 3.8.0
  */
-function wp_dashboard_plugins() {}
+function wp_dashboard_plugins() {
+	_deprecated_function( __FUNCTION__, '3.8' );
+}
 
 /**
  * Deprecated dashboard primary control.
@@ -1271,7 +1284,9 @@
  *
  * @deprecated 3.8.0
  */
-function wp_dashboard_primary_control() {}
+function wp_dashboard_primary_control() {
+	_deprecated_function( __FUNCTION__, '3.8' );
+}
 
 /**
  * Deprecated dashboard recent comments control.
@@ -1278,7 +1293,9 @@
  *
  * @deprecated 3.8.0
  */
-function wp_dashboard_recent_comments_control() {}
+function wp_dashboard_recent_comments_control() {
+	_deprecated_function( __FUNCTION__, '3.8' );
+}
 
 /**
  * Deprecated dashboard secondary section.
@@ -1285,7 +1302,9 @@
  *
  * @deprecated 3.8.0
  */
-function wp_dashboard_secondary() {}
+function wp_dashboard_secondary() {
+	_deprecated_function( __FUNCTION__, '3.8' );
+}
 
 /**
  * Deprecated dashboard secondary control.
@@ -1292,7 +1311,9 @@
  *
  * @deprecated 3.8.0
  */
-function wp_dashboard_secondary_control() {}
+function wp_dashboard_secondary_control() {
+	_deprecated_function( __FUNCTION__, '3.8' );
+}
 
 /**
  * This was once used to move child posts to a new parent.
Index: wp-includes/deprecated.php
===================================================================
--- wp-includes/deprecated.php	(revision 37941)
+++ wp-includes/deprecated.php	(working copy)
@@ -3391,6 +3391,7 @@
  * @return int Number of topics.
  */
 function default_topic_count_text( $count ) {
+	_deprecated_function( __FUNCTION__, '3.9' );
 	return $count;
 }
 
