Index: wp-admin/includes/deprecated.php
===================================================================
--- wp-admin/includes/deprecated.php	(revision 21596)
+++ wp-admin/includes/deprecated.php	(working copy)
@@ -958,3 +958,20 @@
 function _media_button($title, $icon, $type, $id) {
 	_deprecated_function( __FUNCTION__, '3.5' );
 }
+
+/**
+ * Get the default page information to use.
+ *
+ * @since 2.5.0
+ * @deprecated 3.5.0
+ * @deprecated Use get_default_post_to_edit()
+ *
+ * @return object stdClass object containing all the default post data as attributes
+ */
+function get_default_page_to_edit() {
+	_deprecated_function( __FUNCTION__, '3.5', "get_default_post_to_edit( 'page' )" );
+
+	$page = get_default_post_to_edit();
+	$page->post_type = 'page';
+	return $page;
+}
Index: wp-admin/includes/post.php
===================================================================
--- wp-admin/includes/post.php	(revision 21596)
+++ wp-admin/includes/post.php	(working copy)
@@ -450,19 +450,6 @@
 }
 
 /**
- * Get the default page information to use.
- *
- * @since 2.5.0
- *
- * @return object stdClass object containing all the default post data as attributes
- */
-function get_default_page_to_edit() {
-	$page = get_default_post_to_edit();
-	$page->post_type = 'page';
-	return $page;
-}
-
-/**
  * Get an existing post and format it for editing.
  *
  * @since 2.0.0
