diff --git a/entity.features.inc b/entity.features.inc
index d856863..295b50a 100644
--- a/entity.features.inc
+++ b/entity.features.inc
@@ -144,31 +144,3 @@ function entity_features_api() {
   }
   return $items;
 }
-
-/**
- * Features component callback.
- */
-function entity_features_export_options($entity_type) {
-  return entity_features_get_controller($entity_type)->export_options();
-}
-
-/**
- * Features component callback.
- */
-function entity_features_export($data, &$export, $module_name = '', $entity_type) {
-  return entity_features_get_controller($entity_type)->export($data, $export, $module_name);
-}
-
-/**
- * Features component callback.
- */
-function entity_features_export_render($module, $data, $export = NULL, $entity_type) {
-  return entity_features_get_controller($entity_type)->export_render($module, $data, $export);
-}
-
-/**
- * Features component callback.
- */
-function entity_features_revert($module = NULL, $entity_type) {
-  return entity_features_get_controller($entity_type)->revert($module);
-}
diff --git a/entity.module b/entity.module
index 08e4662..140fa2c 100644
--- a/entity.module
+++ b/entity.module
@@ -1299,3 +1299,39 @@ function entity_ctools_plugin_directory($module, $plugin) {
     return 'ctools/content_types';
   }
 }
+
+/**
+ * Features component callback.
+ */
+function entity_features_export_options($entity_type) {
+  require_once 'entity.features.inc';
+
+  return entity_features_get_controller($entity_type)->export_options();
+}
+
+/**
+ * Features component callback.
+ */
+function entity_features_export($data, &$export, $module_name = '', $entity_type) {
+  require_once 'entity.features.inc';
+
+  return entity_features_get_controller($entity_type)->export($data, $export, $module_name);
+}
+
+/**
+ * Features component callback.
+ */
+function entity_features_export_render($module, $data, $export = NULL, $entity_type) {
+  require_once 'entity.features.inc';
+
+  return entity_features_get_controller($entity_type)->export_render($module, $data, $export);
+}
+
+/**
+ * Features component callback.
+ */
+function entity_features_revert($module = NULL, $entity_type) {
+  require_once 'entity.features.inc';
+
+  return entity_features_get_controller($entity_type)->revert($module);
+}
